forked from uptimeconsulting/python-elasticsearch-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 702 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 702 Bytes
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
from setuptools import setup
setup(
name="elasticsearch-runner",
version="0.1",
packages=[
"elasticsearch_runner.resources",
"elasticsearch_runner",
"elasticsearch_runner.test",
],
url="https://github.com/argilla-io/python-elasticsearch-runner",
author="Francisco Aranda",
author_email="francisco@recogn.ai",
description="Lightweight runner for transient Elasticsearch instances, f.ex for testing. or local environments",
install_requires=[
"PyYAML",
"elasticsearch",
"requests",
"psutil",
"lxml",
"plac",
"tqdm",
],
package_data={"elasticsearch_runner": ["resources/*.*"]},
)