-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (22 loc) · 909 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
from setuptools import setup
import warnings
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='pysvo',
version='0.1',
description='Tools for dealing with SEDs and photometric data',
long_description=long_description,
long_description_content_type="markdown",
author='Friedrich Anders',
author_email='fanders@icc.ub.edu',
url='https://github.com/fjaellet/pysvo',
package_dir = {'pysvo/': ''},
packages=['pysvo'],
package_data={'pysvo/data':['photometry/girardi_table_new.csv']},
dependency_links = [],
install_requires=['numpy','scipy','matplotlib','astropy'],
classifiers=["Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"]
)
warnings.warn('''pysvo is still in the testing phase!''')