forked from bd-j/sedpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 817 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import re
try:
from setuptools import setup
setup
except ImportError:
from distutils.core import setup
setup
setup(
name="sedpy",
version='0.1.0',
author="Ben Johnson",
author_email="[email protected]",
packages=["sedpy"],
url="",
license="LICENSE",
description="Tools for dealing with astronomical spectral energy distributions",
long_description=open("README.rst").read() + "\n\n"
+ "Changelog\n"
+ "---------\n\n"
+ open("HISTORY.rst").read(),
package_data={"sedpy": ["data/*fits", "data/filters/*par"]},
include_package_data=True,
#install_requires=["numpy", "scipy >= 0.9", "astropy", "matplotlib", "scikit-learn"],
)