-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 911 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
30
31
32
"""install for hitemp.
hitemp
======
"""
from setuptools import setup, find_packages
description = 'Automatically download & parse HITEMP line lists to a Pandas DataFrame'
setup(name='hitemp',
version='1.0',
description=description,
long_description=description,
long_description_content_type='text/markdown',
url='https://github.com/radis/hitemp',
author='Erwan Pannier',
author_email='erwan.pannier@gmail.com',
license='MIT License',
packages=find_packages(),
install_requires=[
'radis>=0.9.28',
],
platforms="any",
keywords=["hitemp", "spectroscopy"],
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering',
'Topic :: Text Processing',
"Operating System :: OS Independent"],
zip_safe=True)