-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
37 lines (33 loc) · 1.49 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
#!/usr/bin/env python
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
from pyCloudy.version import __version__
setup(name='pyCloudy',
version=__version__,
description='Tools to manage Astronomical Cloudy photoionization code',
long_description=long_description,
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'],
'pyCloudy.db': ['*.ini']},
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"
)