forked from zadorlab/KinBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
83 lines (78 loc) · 2.71 KB
/
setup.py
File metadata and controls
83 lines (78 loc) · 2.71 KB
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
81
82
83
###################################################
## ##
## This file is part of the KinBot code v2.0 ##
## ##
## The contents are covered by the terms of the ##
## BSD 3-clause license included in the LICENSE ##
## file, found at the root. ##
## ##
## Copyright 2018 National Technology & ##
## Engineering Solutions of Sandia, LLC (NTESS). ##
## Under the terms of Contract DE-NA0003525 with ##
## NTESS, the U.S. Government retains certain ##
## rights to this software. ##
## ##
## Authors: ##
## Judit Zador ##
## Ruben Van de Vijver ##
## ##
###################################################
"""
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.py.tpl',
'ase_gauss_hir.py.tpl',
'ase_gauss_irc.py.tpl',
'ase_gauss_opt_well.py.tpl',
'ase_gauss_ts_end.py.tpl',
'ase_gauss_ts_search.py.tpl',
'ase_nwchem_freq_well.py.tpl',
'ase_nwchem_irc.py.tpl',
'ase_nwchem_opt_well.py.tpl',
'ase_gauss_ring_conf.py.tpl',
'ase_nwchem_ts_end.py.tpl',
'ase_nwchem_ts_search.py.tpl',
'ase_nwchem_ts_search_ase_constraints.py.tpl',
'mess_atom.tpl',
'mess_bimol.tpl',
'mess_dummy.tpl',
'mess_fragment.tpl',
'mess_header.tpl',
'mess_hinderedrotor.tpl',
'mess_ts.tpl',
'mess_tunneling.tpl',
'mess_well.tpl',
'molpro.tpl',
'pbs.tpl',
'pbs_molpro.tpl',
'pbs_mesmer.tpl',
'pbs_mess.tpl',
'pbs_python.tpl',
'pesviewer.inp.tpl',
'slurm.tpl',
'slurm_molpro.tpl',
'slurm_mess.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=['ase','numpy','networkx'],
author="Judit Zador and Ruben Van de Vijver",
author_email = "jzador@sandia.gov",
description = "Automatic Potential Energy Surface searches to identify chemical reactions.",
license = "BSD 3-clause",
url = "https://github.com/zadorlab/KinBot",
)