forked from TOMToolkit/tom_base
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
55 lines (53 loc) · 1.89 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='tomtoolkit',
description='The TOM Toolkit and base modules',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://tomtoolkit.github.io',
author='TOM Toolkit Project',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics'
],
keywords=['tomtoolkit', 'astronomy', 'astrophysics', 'cosmology', 'science', 'fits', 'observatory'],
packages=find_packages(),
use_scm_version=True,
setup_requires=['setuptools_scm', 'wheel'],
install_requires=[
'django>=3.0.7', # TOM Toolkit requires db math functions
'django-bootstrap4==1.1.1',
'django-extensions==2.2.9',
'django-filter==2.2.0',
'django-contrib-comments>=1.9.2', # Earlier version are incompatible with Django >= 3.0
'django-gravatar2==1.4.3',
'django-crispy-forms==1.9.0',
'django-guardian==2.2.0',
'numpy==1.18.2',
'python-dateutil==2.8.1',
'requests==2.23.0',
'astroquery==0.4',
'astropy==4.0',
'astroplan==0.6',
'plotly==4.6.0',
'pillow==7.1.0',
'fits2image==0.4.3',
'specutils==1.0',
'dataclasses; python_version < "3.7"',
],
extras_require={
'test': ['factory_boy']
},
include_package_data=True,
)