-
Notifications
You must be signed in to change notification settings - Fork 93
/
setup.py
31 lines (29 loc) · 821 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name = "pyband",
version = "1.0",
description = "band plot using python matplotlib",
author = "Qijing Zheng",
author_email = "[email protected]",
url = 'https://github.com/QijingZheng/VaspBandUnfolding',
py_modules = [],
scripts = [
"aseconv.py",
"energy_unit_conv.py",
"kut.py",
"molAdd.py",
"molDel.py",
"nebplt.py",
"nose_mass.py",
"plot_workfunc.py",
"velInit.py",
"xcell.py",
"xtraj.py",
"npband",
"npdos",
"pyband",
"pydos",
"pygap",
]
)