-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
39 lines (35 loc) · 1.12 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
#!/usr/bin/env python
from setuptools import setup
with open("README.rst") as f:
readme = f.read()
with open("CHANGELOG.rst") as f:
changelog = f.read()
setup(
name="Eve-Elastic",
version="7.4.1",
description="Elasticsearch data layer for eve rest framework",
long_description=readme + "\n\n" + changelog,
license="GPLv3+",
author="Petr Jasek",
author_email="petr.jasek@sourcefabric.org",
url="https://github.com/petrjasek/eve-elastic",
packages=["eve_elastic"],
test_suite="test.test_elastic",
install_requires=[
"arrow>=0.4.2",
"ciso8601>=1.0.2,<3",
"pytz>=2015.4",
"elasticsearch>=7.0,<8.0",
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
python_requires=">=3.8",
)