-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·58 lines (53 loc) · 1.6 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
53
54
55
56
57
58
#!/usr/bin/env python
from setuptools import setup, find_packages
VERSION = '0.1.0'
DESCRIPTION = "Find small moons around planets \
using shift-and-stack based on JPL Horizons ephemeris"
CLASSIFIERS = list(filter(None, map(str.strip,
"""
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Libraries :: Python Modules
""".splitlines())))
install_requires = [
'numpy',
'matplotlib',
'pandas',
'scipy',
'astropy',
'astroquery',
'scikit-image',
'pyyaml',
'image_registration @ git+https://github.com/keflavich/image_registration.git',
'sphinx',
'nbsphinx',
'pytest',
]
setup(
name="shift_stack_moons",
version=VERSION,
description=DESCRIPTION,
long_description=DESCRIPTION,
long_description_content_type="text/x-rst",
classifiers=CLASSIFIERS,
author="Ned Molter",
author_email="[email protected]",
url="https://github.com/emolter/shift_stack_moons",
python_requires='>=3',
license="BSD",
keywords='planetary astronomy moons jpl ephemeris',
packages=find_packages(),
py_modules=['shift_stack_moons'],
platforms=['any'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
install_requires=install_requires,
)