-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
56 lines (52 loc) · 2.17 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
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
__author__ = "Katarina Brlec"
__copyright__ = "Copyright Katarina Brlec, Daniel W. Davies (2020)"
__version__ = "0.1"
__maintainer__ = "Katarina Brlec"
__email__ = "[email protected]"
__date__ = "July 12 2020"
from setuptools import setup, Extension
import os
module_dir = os.path.dirname(os.path.abspath(__file__))
if __name__ == "__main__":
setup(
name='surfaxe',
version='1.0',
description='Dealing with slabs for first principles calculations of surfaces',
long_description=open(os.path.join(module_dir, 'README.md')).read(),
long_description_content_type='text/markdown',
url='https://github.com/SMTG-group/',
author='Katarina Brlec',
author_email='[email protected]',
license='MIT',
packages=['surfaxe'],
zip_safe=False,
install_requires=['scipy', 'numpy>1.20', 'spglib', 'pymatgen','pandas','scikit-learn'],
python_requires='>=3.7',
classifiers=[
'Programming Language :: Python',
'Development Status :: Development',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering'
],
entry_points={
'console_scripts': [
'surfaxe-parse-energy = surfaxe.cli.parseenergy:main',
'surfaxe-parse-structures = surfaxe.cli.parsestructures:main',
'surfaxe-bonds = surfaxe.cli.bonds:main',
'surfaxe-simplenn = surfaxe.cli.simplenn:main',
'surfaxe-complexnn = surfaxe.cli.complexnn:main',
'surfaxe-potential = surfaxe.cli.potential:main',
'surfaxe-cartdisp = surfaxe.cli.cartdisp:main',
'surfaxe-core = surfaxe.cli.core:main',
'surfaxe-vacuum = surfaxe.cli.vacuum:main',
'surfaxe-plot-surfen = surfaxe.cli.plotsurfen:main',
'surfaxe-plot-enatom = surfaxe.cli.plotenatom:main',
'surfaxe-plot-bonds = surfaxe.cli.plotbonds:main',
'surfaxe-plot-potential = surfaxe.cli.plotpotential:main',
'surfaxe-generate = surfaxe.cli.generateslabs:main',
'surfaxe-surface-dipole = surfaxe.cli.surfacedipole:main',
]
}
)