forked from STAMP-project/camp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
69 lines (62 loc) · 1.78 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
#
# CAMP
#
# Copyright (C) 2017 -- 2019 SINTEF Digital
# All rights reserved.
#
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE file for details.
#
from setuptools import setup, find_packages
from camp import About
test_dependencies = [
"green==2.15.0",
"mock==2.0.0",
"deepdiff==3.3.0",
"coverage==4.5.3"
]
setup(name="camp",
version=About.VERSION,
description=About.DESCRIPTION,
author="Hui Song",
author_email="[email protected]",
url="https://github.com/STAMP-project/camp",
packages=find_packages(exclude=["tests*", "tests.*"]),
include_package_data = True,
package_data = {
"camp": [
"data/metamodel.yml",
"data/manage_images.sh"
]
},
license="MIT",
test_suite="tests",
entry_points = {
'console_scripts': [
'camp = camp.run:main'
]
},
install_requires = [
"future == 0.17.1",
"PyYAML == 5.1",
"jsonpath-rw == 1.4.0",
"argparse == 1.2.1",
"defusedxml == 0.6.0",
"ozepy @ git+https://github.com/STAMP-project/[email protected]#egg=ozepy"
],
tests_require = test_dependencies,
extras_require = {
"test": test_dependencies
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing"
],
)