-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
50 lines (43 loc) · 1.13 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
__version__ = "0.2.3"
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()
install_requires = [
"lighttree==1.3.4",
"elasticsearch>=7.0.0,<8.0.0",
"typing_extensions",
]
develop_requires = [
"pre-commit",
"black",
"coverage",
"flake8",
"pytest",
"pytest-cov",
"mock",
"mypy",
"pandas",
"Sphinx",
"twine",
]
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,
extras_require={"develop": develop_requires},
tests_require=develop_requires,
license="Apache-2.0",
)