-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 808 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="spigen",
version='0.1.0',
author="Alexa Villaume",
author_email="[email protected]",
packages=["spigen"],
url="",
license="LICENSE",
description="Tools for generating stellar spectra from stellar parameters",
#long_description=open("README.rst").read() + "\n\n"
#+ "Changelog\n"
#+ "---------\n\n"
#+ open("HISTORY.rst").read(),
package_data={"spigen": ["Coefficients/*dat"]},
include_package_data=True,
#install_requires=["numpy", "scipy >= 0.9", "astropy", "matplotlib", "scikit-learn"],
)