-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
31 lines (29 loc) · 1.03 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
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='sirjfu@gmail.com',
license='MIT',
packages=['nistasd'],
zip_safe=False,
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
install_requires=[
'HTMLParser',
'pprint',
'logzero',
'mpldatacursor',
'pathlib'
],
)