forked from Morisset/pyCloudy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 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
#!/usr/bin/env python
from distutils.core import setup
from pyCloudy.version import __version__
setup(name='pyCloudy',
version=__version__,
description='Tools to manage Astronomical Cloudy photoionization code',
long_description=open('README.rst').read(),
author='Christophe Morisset IA-UNAM',
author_email='[email protected]',
maintainer='Christophe Morisset IA-UNAM',
maintainer_email='[email protected]',
url='https://sites.google.com/site/pycloudy/',
download_url = 'https://github.com/Morisset/pyCloudy/releases/tag/{}'.format(__version__),
packages=['pyCloudy','pyCloudy.c1d','pyCloudy.c3d','pyCloudy.utils', 'pyCloudy.db'],
package_data={'pyCloudy.utils':['*txt']},
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: Free for non-commercial use',
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering :: Astronomy'
],
license='GPL',
keywords="astronomy photoionization cloudy"
)