forked from erwanp/nist-asd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 1.05 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
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='nist-asd',
version='1.4',
description='Basically a class which parses the NIST Atomic Spectra Database and saves the data to a dictionary '
'on HDD. You can pass an matplotlib.axis, and the emissions lines will be plotted with an optional '
'normalization factor. \n Parser for energy levels is also included.',
long_description=read('README.md'),
url='https://github.com/SirJohnFranklin/nist-asd',
author='SirJohnFranklin',
author_email='[email protected]',
license='MIT',
packages=['nistasd'],
zip_safe=False,
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
install_requires=[
'HTMLParser',
'logzero',
'mpldatacursor',
'pathlib',
'roman',
'mendeleev'
],
)