-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (42 loc) · 1.42 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
test_requires = [
"async_asgi_testclient",
"pytest>=5.0",
"pytest-asyncio==0.18.3",
"coverage",
"pytest-cov",
"pytest-docker-fixtures[pg]>=1.3.0",
"docker",
]
setup(
name="guillotina_audit",
description="elasticsearch audit support for guillotina",
keywords="search async guillotina elasticsearch audit",
author="Nil Bacardit Vinyals",
author_email="n.bacardit@iskra.cat",
version=open("VERSION").read().strip(),
long_description=(open("README.rst").read() + "\n" + open("CHANGELOG.rst").read()),
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
],
url="https://github.com/guillotinaweb/guillotina_audit",
license="GPL version 3",
setup_requires=["pytest-runner"],
zip_safe=True,
include_package_data=True,
package_data={"": ["*.txt", "*.rst"], "guillotina_audit": ["py.typed"]},
packages=find_packages(exclude=["ez_setup"]),
install_requires=[
"guillotina>=6.0.0a16",
"pydantic",
"elasticsearch[async]>=8.0.0,<=8.12.0",
],
tests_require=test_requires,
extras_require={"test": test_requires},
)