-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (31 loc) · 1.14 KB
/
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
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
from distutils.core import setup
import json
with open('fifimon/version.json') as fp:
_info = json.load(fp)
config = {
'name': 'fifimon',
'version': _info['version'],
'description': 'FIFI-LS Monitor',
'long_description': 'Program to monitor FIFI-LS data',
'author': 'Dario Fadda',
'author_email': '[email protected]',
'url': 'https://github.com/darioflute/fifimon.git',
'download_url': 'https://github.com/darioflute/fifimon',
'python_requires':'>=3.7',
'license': 'GPLv3+',
'packages': ['fifimon'],
'scripts': ['bin/fifimon'],
'include_package_data':True,
'package_data':{'fifimon':['version.json','icons/*.png','copyright.txt','data/*']},
'install_requires': ['numpy', 'matplotlib', 'astropy'],
'classifiers':[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPLv3+ License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Visualization",
]
}
setup(**config)