forked from alkemics/pandagg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (38 loc) · 1.1 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__version__ = "0.0.2"
import os
from setuptools import setup
from setuptools import find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.md")).read()
tests_require = [
"coverage",
"pytest",
"mock",
"pandas>=0.24.2",
]
install_requires = [
"future",
"lighttree==0.0.2",
"elasticsearch>=7.1.0,<8.0.0",
]
extras_require = {"test": tests_require, "pandas": ["pandas>=0.24.2"]}
setup(
name="pandagg",
version=__version__,
description="Python package provided to make elasticsearch aggregations and queries easy.",
long_description=README,
long_description_content_type="text/markdown",
author="Léonard Binet",
author_email="[email protected]",
url="https://github.com/alkemics/pandagg",
keywords="elasticsearch aggregation pandas",
packages=find_packages(),
include_package_data=True,
test_suite="pandagg.tests",
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
extras_require=extras_require,
)