-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·64 lines (61 loc) · 2.13 KB
/
setup.py
File metadata and controls
executable file
·64 lines (61 loc) · 2.13 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
54
55
56
57
58
59
60
61
62
63
64
import os
from setuptools import setup, find_packages
# read in README
this_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_dir, 'README.md'), 'rb') as f:
long_description=f.read().decode().strip()
setup(
name='skip',
description='Django REST api to Hop Alerts Database',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://www.github.com/scimma/skip',
author='Lindy Lindstrom, David Collom',
author_email='{llindstrom, dcollom}@lco.global',
license='BSD 3-Clause',
packages=find_packages(),
python_requires='>=3.6.*',
install_requires=[
'astropy>=4.2',
'beautifulsoup4>=4.9',
'boto3~=1.17',
'confluent_kafka>=1.6',
'Django>=3.1',
'django-cors-headers>=3.7',
'django-extensions>=3.1',
'django-filter>=2.4',
'djangorestframework>=3.12',
'gracedb-sdk~=0.1',
'healpy>=1.14',
"hop-client >= 0.4",
'numpy>=1.20',
'psycopg2>=2.8',
'python-dateutil>=2.8',
'skip-django',
'whitenoise>=5.2',
'voevent-parse~=1.0',
],
dependency_links=['git+git://github.com/TOMToolkit/skip-django.git#egg=skip-django'],
extras_require={
'dev': ['pytest', 'pytest-console-scripts', 'pytest-cov', 'flake8', 'flake8-black'],
'docs': ['sphinx', 'sphinx_rtd_theme', 'sphinxcontrib-programoutput'],
'docker': ['gunicorn[gevent]']
},
setup_requires=['setuptools_scm'],
use_scm_version=True,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Natural Language :: English',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'License :: OSI Approved :: BSD License',
],
)