-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (34 loc) · 1.29 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
from setuptools import setup, find_packages
setup(name='racstransients',
version='1.0.0',
description='Search RACS fields for historical transients.',
url='http://github.com/ajstewart/askap-image-diagnostic',
author='Adam Stewart',
author_email='[email protected]',
license='',
packages=find_packages(),
install_requires=['numpy',
'astropy',
'matplotlib',
'AegeanTools',
'pandas',
'astroquery',
'colorlog',
'django>=2.2.14,<3.0',
'django_tables2',
'whichcraft',
# 'bdsf',
'sqlalchemy',
'psycopg2',
'tablib',
'django-contrib-comments',
'django-filter',
'django-crispy-forms',
'django-rest-auth',
'django-allauth',
'django-keyboard-shortcuts',
'slackclient',
],
scripts=["bin/processASKAPimage.py"],
dependency_links=[],
include_package_data=True)