-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.41 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
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='tom-dash',
description='Dash module for the TOM Toolkit',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/TOMToolkit',
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, # use_scm_version and setup_requires setuptools_scm are required for automated releases
setup_requires=['setuptools_scm', 'wheel'],
install_requires=[
'tomtoolkit~=2.7.0',
'dash-bootstrap-components~=0.13.0',
'django_plotly_dash~=1.6.0'
],
extras_require={
'test': ['factory_boy~=3.1']
},
include_package_data=True,
)