-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·25 lines (23 loc) · 918 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/python
from setuptools import setup
from ipread import __version__
import os
setup(name='ipread',
version=__version__,
author='Stephan Kuschel',
author_email='[email protected]',
description='Reads Imageplate files and combines multiple readouts to '
'a single HDR if necessary. Can be used as module or '
'with "python -m ipread" to have a CLI tool for '
'fast preview.',
url='https://github.com/skuschel/IPread',
py_modules=['ipread'],
scripts=['scripts/ipread'],
install_requires=['matplotlib', 'numpy', 'numexpr'],
license='GPL',
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Visualization']
)