-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 896 Bytes
/
setup.py
File metadata and controls
38 lines (34 loc) · 896 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", 'r') as f:
long_description = f.read()
setup(
name='pw2py',
version='0.0.0',
description='python interface for reading quantum espresso input/output',
license=None,
long_description=long_description,
author='Tyler J. Smart',
author_email='tjsmart@ucsc.edu',
url="https://gitlab.com/tjsmart/pw2py",
packages=find_packages(),
install_requires=[
'f90nml',
'lxml',
'numpy',
'pandas',
'scipy'
],
scripts=[
'scripts/build_scell',
'scripts/conv_geo',
'scripts/cp_geo',
'scripts/create_defect',
'scripts/deform_cell',
'scripts/jdftx_conv',
'scripts/linear_mix',
'scripts/reorder_atoms',
'scripts/scell_embed',
'scripts/shift_xsf',
]
)