forked from mfouesneau/pystellibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 813 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, find_packages
def readme():
with open('README.rst') as f:
return f.read()
setup(name = "pystellibs",
version = 0.1,
description = "Making synthetic spectra from libraries",
long_description = readme(),
author = "Morgan Fouesneau",
author_email = "",
url = "https://github.com/mfouesneau/pystellibs",
packages = find_packages(),
package_data = {'pystellibs':['libs/*'],
'pystellibs.ezunits':['default_en.txt']},
include_package_data = True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Astronomy'
],
zip_safe=False
)