forked from zadorlab/KinBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
80 lines (77 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
"""
This file is used to install KinBot.
Type
python setup.py build
python setup.py install
"""
from setuptools import setup, find_packages
setup(
name = "KinBot",
version = "2.0",
packages = find_packages(),
package_data={'tpl':[
'arrow.png',
'ase_gauss_freq_well.tpl.py',
'ase_gauss_hir.tpl.py',
'ase_gauss_irc.tpl.py',
'ase_gauss_opt_well.tpl.py',
'ase_gauss_ts_end.tpl.py',
'ase_gauss_ts_search.tpl.py',
'ase_nwchem_freq_well.tpl.py',
'ase_nwchem_irc.tpl.py',
'ase_nwchem_opt_well.tpl.py',
'ase_gauss_ring_conf.tpl.py',
'ase_nwchem_ts_end.tpl.py',
'ase_nwchem_ts_search.tpl.py',
'ase_nwchem_ts_search_ase_constraints.tpl.py',
'mess_2tst.tpl',
'mess_atom.tpl',
'mess_barrier.tpl',
'mess_barrier_union.tpl',
'mess_barrierless.tpl',
'mess_bimol.tpl',
'mess_core_rr.tpl',
'mess_dummy.tpl',
'mess_fragment.tpl',
'mess_fragment_OH.tpl',
'mess_pstfragment.tpl',
'mess_header.tpl',
'mess_hinderedrotor.tpl',
'mess_outerrrho.tpl',
'mess_pst.tpl',
'mess_rrho.tpl',
'mess_termol.tpl',
'mess_tunneling.tpl',
'mess_variational.tpl',
'mess_well.tpl',
'mess_well_union.tpl',
'molpro.tpl',
'pbs.tpl',
'pbs_molpro.tpl',
'pbs_mesmer.tpl',
'pbs_mess.tpl',
'pbs_mess_uq.tpl',
'pbs_python.tpl',
'pesviewer.inp.tpl',
'slurm.tpl',
'slurm_molpro.tpl',
'slurm_mess_uq.tpl',
'slurm_mesmer.tpl',
'slurm_python.tpl']},
include_package_data=True,
entry_points={'console_scripts':[
'kinbot = kinbot.kb:main',
'pes = kinbot.pes:main',
]},
install_requires = [
'numpy>=1.17.0',
'ase',
'networkx',
'rmsd'
],
author="Judit Zador, Ruben Van de Vijver, Carles Marti, Amanda Dewyer",
author_email = "[email protected]",
description = "Automated reaction kinetics for gas-phase species",
license = "BSD 3-clause",
url = "https://github.com/zadorlab/KinBot",
)