-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·110 lines (73 loc) · 2.21 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# This file is part of EOMEE.
#
# EOMEE is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your
# option) any later version.
#
# EOMEE is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with EOMEE. If not, see <http://www.gnu.org/licenses/>.
r"""
EOMEE setup script.
Run `python setup.py --help` for help.
"""
# from eomee import __version__ as VERSION
NAME = "eomee"
VERSION = "0.0.1"
LICENSE = "GPLv3"
AUTHOR = "Ayers Lab"
AUTHOR_EMAIL = "[email protected]"
URL = "https://github.com/gabrielasd/eomee"
DESCRIPTION = "Equations of Motion and ERPA from molecular integrals and RDMs"
CLASSIFIERS = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Science/Engineering :: Molecular Science",
]
INSTALL_REQUIRES = [
"numpy>=1.13",
"scipy>=1.0",
]
EXTRAS_REQUIRE = {
"test": ["pytest"],
"docs": ["sphinx", "sphinx_rtd_theme"],
}
PACKAGES = [
"eomee",
"eomee.test",
"eomee.tools",
"eomee.spinadapted"
]
PACKAGE_DATA = {
"eomee.test": ["data/*.npy", "data/*.npz"],
}
INCLUDE_PACKAGE_DATA = True
ENTRY_POINTS = {
"console_scripts": ["eom=eomee.scripts.run_eom:main",]
}
if __name__ == "__main__":
from setuptools import setup
LONG_DESCRIPTION = open("README.rst", "r", encoding="utf-8").read()
setup(
name=NAME,
# version=VERSION,
license=LICENSE,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
packages=PACKAGES,
package_data=PACKAGE_DATA,
include_package_data=INCLUDE_PACKAGE_DATA,
entry_points=ENTRY_POINTS,
)