forked from TOMToolkit/tom_base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (51 loc) · 1.58 KB
/
setup.py
File metadata and controls
53 lines (51 loc) · 1.58 KB
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
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',
version='0.2.5',
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='ariba@lco.global',
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(),
install_requires=[
'django',
'django-bootstrap4',
'django-extensions',
'django-filter',
'django-contrib-comments',
'django-gravatar2',
'django-crispy-forms',
'django-guardian',
'python-dateutil',
'requests',
'astroquery',
'astropy',
'plotly',
'pyephem',
'matplotlib',
'numpy',
'pillow',
'gsselect',
],
extras_require={
'test': ['factory_boy', 'rise-set']
},
include_package_data=True,
)