-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·40 lines (36 loc) · 1.11 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
REQUIRES = ['astropy',
'bokeh',
'ipython',
'matplotlib',
'numpy',
'numpydoc',
'pysynphot',
'pytest',
'pyyaml']
DEPENDENCY_LINKS = [
'git+https://github.com/astropy/astroquery.git@ccc96185beeff86f3a12a31a00a801afcebe1dbe']
FILES = []
for root, _, files in os.walk("svo_filters"):
FILES += [os.path.join(root.replace("svo_filters/", ""), fname)
for fname in files if not fname.endswith(".py") and not fname.endswith(".pyc")]
setup(
name='svo_filters',
version='0.4.4',
description='A Python wrapper for the SVO Filter Profile Service',
packages=find_packages(
".",
exclude=["*.tests"]),
package_data={
'svo_filters': FILES},
install_requires=REQUIRES,
dependency_links=DEPENDENCY_LINKS,
author='Joe Filippazzo',
author_email='[email protected]',
license='MIT',
url='https://github.com/hover2pi/svo_filters',
long_description='',
zip_safe=True,
use_2to3=False)