-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (33 loc) · 1.19 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
from setuptools import setup, find_packages
import os
from importlib.metadata import version
#set version number manually for now
setup(name='variableapec',
version="1.0.2",
description='variableapec tool for AtomDB python library.',
url='http://www.atomdb.org',
author='Keri Heuer',
author_email='[email protected]',
license='Smithsonian',
classifiers=['Development Status :: 4 - Beta',\
'Environment :: Console',\
'Intended Audience :: Developers',\
'Intended Audience :: Education',\
'Intended Audience :: End Users/Desktop',\
'Intended Audience :: Science/Research',\
'Topic :: Scientific/Engineering :: Astronomy',\
'Topic :: Scientific/Engineering :: Physics',\
'Programming Language :: Python :: 3',\
'Operating System :: POSIX'],
zip_safe=False,\
install_requires=[
"requests",\
"wget",\
"numpy>=1.9.0",\
"scipy>=1.4.0",\
"joblib",\
"mock",\
"astropy",\
"pycurl"],
packages=find_packages(),
py_modules=['variableapec'])