-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
47 lines (46 loc) · 1.32 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="pyDFTutils",
version="0.1.19",
description="utils for DFT/TB calculation",
author="Xu He",
author_email="[email protected]",
license="GPLv3",
packages=find_packages(),
install_requires=[
"numpy",
"matplotlib",
"scipy",
"ase",
"spglib",
"phonopy",
"pathos",
],
scripts=[
"scripts/view_pos_info.py",
"scripts/plotldos.py",
"scripts/plotpdos.py",
"scripts/plotphonopy.py",
"scripts/xvtovasp.py",
"scripts/octainfo.py",
"scripts/predict_gap.py",
"scripts/mlrelax.py",
"scripts/mlphonon.py",
"scripts/build_supercell.py",
"scripts/plot_siesta_dos.py",
"scripts/get_siesta_bandgap.py",
"scripts/gen_primitive.py",
"scripts/dump_hist.py"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
#'License :: OSI Approved :: BSD License',
#'License :: OSI Approved :: GPLv3 License',
],
)