forked from zkbt/zachopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
20 lines (18 loc) · 863 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
# See PEP 0440: https://www.python.org/dev/peps/pep-0440/#version-scheme
VERSION = '0.1.4'
setup(
name='zachopy',
version=VERSION,
package_dir={'zachopy': '.',
'zachopy.borrowed': 'borrowed',
'zachopy.displays': 'displays',
'zachopy.relations': 'relations'},
packages=['zachopy', 'zachopy.borrowed', 'zachopy.displays', 'zachopy.relations'],
description="Various tools used in lots of code written by Zach Berta-Thompson ([email protected])",
author='Zach Berta-Thompson',
author_email='[email protected]',
url='https://github.com/TESScience/zachopy',
install_requires=['numpy', 'astropy', 'astroquery', 'matplotlib', 'scipy', 'pyds9==1.8.1', 'colormath', 'parse'],
download_url = 'https://github.com/TESScience/zachopy/tarball/{}'.format(VERSION),
)