forked from chianti-atomic/ChiantiPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (24 loc) · 957 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
from setuptools import setup, find_packages
with open("README.rst", "r", encoding='utf-8') as fh:
long_description = fh.read()
setup(name = 'ChiantiPy',
description = 'a Python interface to the CHIANTI atomic database for astrophysical spectroscopy',
long_description = long_description,
# long_description_content_type = text/rst,
version = '0.15.0',
author = 'Ken Dere',
author_email = '[email protected]',
url = 'https://github.com/chianti-atomic/ChiantiPy',
packages = find_packages(),
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics'
]
)