-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
40 lines (36 loc) · 1.14 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
import sys
import glob
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import cloudyfsps
VERSION = cloudyfsps.__version__
setup(name="cloudyfsps",
version="0.1",
description="nebular emission for FSPS",
url="http://github.com/nell-byler/cloudyfsps",
author="Nell Byler",
author_email="[email protected]",
license="BSD new",
packages=["cloudyfsps",
"cloudyfsps.astrodata"],
package_dir={"cloudyfsps":"cloudyfsps",
"astrodata":"cloudyfsps/astrodata"},
package_data={
"": ["README.rst", "LICENSE.rst", "AUTHORS.rst"],
"cloudyfsps":["data/*.dat"],
"astrodata":["data/*.dat", "data/*.npz"]
},
include_package_data=True,
scripts=glob.glob("scripts/*.py"),
install_requires=['fsps'],
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python"],
zip_safe=True)