forked from elastic/rally
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
68 lines (61 loc) · 2.04 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
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")
install_requires = [
"elasticsearch==2.3.0",
"psutil==4.1.0",
"py-cpuinfo==0.2.3",
"tabulate==0.7.5",
"jsonschema==2.5.1",
"Jinja2==2.8",
# remote messaging
"thespian==3.0.4",
# always use the latest version, these are certificate files...
"certifi"
]
tests_require = []
# 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*",)
),
include_package_data=True,
package_data={"": ["*.json"]},
install_requires=install_requires,
test_suite="tests",
tests_require=tests_require,
entry_points={
"console_scripts": ["esrally=esrally.rally: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"
],
zip_safe=False)