forked from elastic/curator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.45 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
import os
from setuptools import setup
# Utility function to read from file.
def fread(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def get_version():
VERSION = fread("VERSION").strip()
build_number = os.environ.get('CURATOR_BUILD_NUMBER', None)
if build_number:
return VERSION + "b{}".format(build_number)
return VERSION
setup(
name = "elasticsearch-curator",
version = get_version(),
author = "Aaron Mildenstein",
author_email = "[email protected]",
description = "Tending your time-series indices in Elasticsearch",
long_description=fread('README.md'),
url = "http://github.com/elasticsearch/curator",
download_url = "https://github.com/elasticsearch/curator/tarball/v" + get_version(),
license = "Apache License, Version 2.0",
install_requires = [
'elasticsearch>=1.0.0,<2.0.0'
],
keywords = "elasticsearch time-series indexed index-expiry",
packages = ["curator"],
include_package_data=True,
entry_points = {
"console_scripts" : ["curator = curator.curator:main",
"es_repo_mgr = curator.es_repo_mgr:main"]
},
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
],
test_suite = "test_curator.run_tests.run_all",
tests_require = ["mock", "nose", "coverage", "nosexcover"]
)