forked from elastic/rally
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
138 lines (127 loc) · 4.3 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# Licensed to Elasticsearch B.V. under one or more contributor
# license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright
# ownership. Elasticsearch B.V. licenses this file to you under
# the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from os.path import join, dirname
try:
from setuptools import setup, find_packages
except ImportError:
print("*** Could not find setuptools. Did you install pip3? *** \n\n")
raise
def str_from_file(name):
with open(join(dirname(__file__), name)) as f:
return f.read().strip()
raw_version = str_from_file("version.txt")
VERSION = raw_version.split(".")
__version__ = VERSION
__versionstr__ = raw_version
long_description = str_from_file("README.rst")
################################################################################################
#
# Adapt `create-notice.sh` whenever changing dependencies here.
#
# That script grabs all license files so we include them in the notice file.
#
################################################################################################
install_requires = [
# License: Apache 2.0
# transitive dependency urllib3: MIT
"elasticsearch==7.0.5",
# License: BSD
"psutil==5.4.0",
# License: MIT
"py-cpuinfo==3.2.0",
# License: MIT
"tabulate==0.8.5",
# License: MIT
"jsonschema==3.1.1",
# License: BSD
# transitive dependency Markupsafe: BSD
"Jinja2==2.10.1",
# License: MIT
"thespian==3.9.3",
# recommended library for thespian to identify actors more easily with `ps`
# "setproctitle==1.1.10",
# always use the latest version, these are certificate files...
# License: MPL 2.0
"certifi",
# License: Apache 2.0
# transitive dependencies:
# botocore: Apache 2.0
# jmespath: MIT
# s3transfer: Apache 2.0
"boto3==1.9.120"
]
tests_require = [
"pytest==5.2.0",
"pytest-benchmark==3.2.2"
]
# These packages are only required when developing Rally
develop_require = [
"tox==3.14.0",
"coverage==4.5.4",
"sphinx==2.2.0",
"sphinx_rtd_theme==0.4.3",
"twine==1.15.0",
"wheel==0.33.6",
"github3.py==1.3.0",
"pylint==2.4.2",
"pylint-quotes==0.2.1"
]
# we call the tool rally, but it will be published as esrally on pypi
setup(name="esrally",
maintainer="Daniel Mitterdorfer",
maintainer_email="[email protected]",
version=__versionstr__,
description="Macrobenchmarking framework for Elasticsearch",
long_description=long_description,
url="https://github.com/elastic/rally",
license="Apache License, Version 2.0",
packages=find_packages(
where=".",
exclude=("tests*", "benchmarks*")
),
include_package_data=True,
package_data={"": ["*.json", "*.yml"]},
install_requires=install_requires,
test_suite="tests",
tests_require=tests_require,
extras_require={
"develop": tests_require + develop_require
},
setup_requires=[
"pytest-runner==5.1",
],
entry_points={
"console_scripts": [
"esrally=esrally.rally:main",
"esrallyd=esrally.rallyd:main"
],
},
classifiers=[
"Topic :: System :: Benchmark",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
zip_safe=False)