forked from atomneb/AtomNeb-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 1.09 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
#!/usr/bin/env python
#
# Setup script for atomneb
#
import os
import codecs
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
#import atomneb
with codecs.open('README.rst', 'r', 'utf-8') as fd:
setup(name='atomneb',
version="0.3.3", #atomneb.__version__,
description = 'atomneb: Python Package for Atomic Data of Ionized Nebulae',
long_description=fd.read(),
author='Ashkbiz Danehkar',
author_email='[email protected]',
url='https://atomneb.github.io/AtomNeb-py/',
download_url = 'https://github.com/atomneb/AtomNeb-py',
keywords = ['atomneb', 'Chianti atomic database', 'atomic datasets', 'recombination lines', 'collisionally excited lines', 'recombination coefficients'],
license='http://www.gnu.org/licenses/gpl.html',
platforms=['any'],
packages=['atomneb'],
#package_data={'atomneb': ['*.txt', 'text/*.readme']},
data_files = [("", ["LICENSE"])],
install_requires=['numpy','astropy'],
)