forked from elastic/rally
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
89 lines (80 loc) · 2.76 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
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 `scripts/offline-install.sh` whenever changing dependencies here.
#
# That script grabs all license files so we include them in the offline package.
#
################################################################################################
install_requires = [
"elasticsearch==6.0.0",
"psutil==5.4.0",
"py-cpuinfo==3.2.0",
"tabulate==0.8.1",
"jsonschema==2.5.1",
"Jinja2==2.9.5",
# remote messaging
"thespian==3.9.2",
# recommended library for thespian to identify actors more easily with `ps`
# "setproctitle==1.1.10",
# always use the latest version, these are certificate files...
"certifi"
]
tests_require = [
"pytest==3.4.2",
"pytest-benchmark==3.1.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,
setup_requires=[
"pytest-runner==2.10.1",
],
entry_points={
"console_scripts": [
"esrally=esrally.rally:main",
"esrallyd=esrally.rallyd:main"
],
},
classifiers=[
"Topic :: System :: Benchmark",
"Development Status :: 4 - Beta",
"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.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6"
],
zip_safe=False)