-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (43 loc) · 1.15 KB
/
setup.py
File metadata and controls
45 lines (43 loc) · 1.15 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
import setuptools
requires = [
# "astropy>=2.0.12",
# "setuptools>=41.0.0",
"SQLAlchemy>=1.3.24",
"redis>=2.10.6",
"pandas>=0.24.2",
# "slacker>=0.9.65",
"numpy>=1.18.5",
# "credentials>=1.1",
"python_dateutil>=2.8.0",
"PyYAML>=5.1.2",
"mysqlclient>=1.4.4",
"logger==1.4",
"mip>=1.13.0",
# "matplotlib==2.2.5",
"scipy>=1.4.1",
"scikit-image>=0.15.0",
"pytz>=2021.1",
"backports-datetime-fromisoformat==1.0.0"
]
setuptools.setup(
name = "meerkat_target_selector",
version = "0.0.2",
author = "Bart Wlodarczyk-Sroka, Kevin Lacker, Daniel Czech, Tyler Cox",
author_email = "bart.wlodarczyk-sroka@postgrad.manchester.ac.uk",
description = ("Breakthrough Listen's MeerKAT Target Selector"),
license = "MIT",
keywords = "example documentation tutorial",
long_description=open("README.md").read(),
install_requires=requires,
packages=[
'mk_target_selector'
],
py_modules = [
'target_selector_start',
],
entry_points = {
'console_scripts': [
'target_selector_start = target_selector_start:cli',
]
},
)