-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·53 lines (47 loc) · 1.38 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
from setuptools import setup, find_packages
import os
moduleDirectory = os.path.dirname(os.path.realpath(__file__))
# Imports __version__ variable from __version__.py
__version__ = ''
exec(open(moduleDirectory + "/psat_server_web/__version__.py").read())
def readme():
with open(moduleDirectory + '/README.md') as f:
return f.read()
setup(
name="psat-server-web",
description='Pan-STARRS and ATLAS web interface.',
long_description=readme(),
long_description_content_type="text/markdown",
version=__version__,
author='genghisken',
author_email='[email protected]',
license='MIT',
url='https://github.com/genghisken/psat-server-web',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
],
install_requires=[
'numpy',
'mysqlclient',
'django<4.2',
'django_tables2',
'djangorestframework',
'mod-wsgi',
'pyyaml',
'docopt',
'python-dotenv',
'gkhtm',
'gkutils>=0.3.2',
'requests',
'lasair',
'dustmaps',
],
python_requires='>=3.6',
include_package_data=True,
zip_safe=False
)
# 2023-10-24 Added 'djangorestframework'.