-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (37 loc) · 904 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
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python3
from setuptools import find_packages, setup
import sys
if sys.version_info.major < 3:
raise SystemExit("Python 3 is required!")
package_data = {
"td": ["templates/*.plt",],
}
setup(
name="td",
version="0.2.1",
description="Parser for excited state calculations",
url="https://github.com/eljost/td",
maintainer="Johannes Steinmetzer",
maintainer_email="johannes.steinmetzer@uni-jena.de",
license="GPL 3",
platforms=["unix"],
packages=find_packages(),
package_data=package_data,
install_requires=[
"argcomplete",
"jinja2",
"matplotlib",
"numpy",
"pandas",
"python-docx",
"scipy",
"simplejson",
"pyparsing",
],
entry_points={
"console_scripts": [
"td = td.main:run",
"tdmix = td.mix_spectra:run",
]
},
)