forked from guillotinaweb/guillotina_amqp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (53 loc) · 1.59 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
51
52
53
54
55
56
from setuptools import find_packages
from setuptools import setup
try:
README = open("README.rst").read()
except IOError:
README = None
setup(
name="guillotina_amqp",
version="5.0.29",
description="Integrate amqp into guillotina",
long_description=README,
install_requires=[
"guillotina>=5.0.0,<6",
"aioamqp",
"lru-dict",
"aioredis<2.0.0",
"backoff",
"typing_extensions",
],
author="Nathan Van Gheem",
author_email="[email protected]",
url="https://github.com/guillotinaweb/guillotina_amqp",
packages=find_packages(exclude=["demo"]),
include_package_data=True,
package_data={"": ["*.txt", "*.rst"], "guillotina_amqp": ["py.typed"]},
tests_require=["pytest"],
extras_require={
"test": [
"asynctest==0.13.0",
"pytest>=4.6.0,<6.1.0",
"docker>=5.0.0,<6.0.0",
"psycopg2-binary",
"pytest-asyncio==0.10.0",
"pytest-cov>=2.6.1,<=2.9.0",
"coverage>=4.4",
"pytest-docker-fixtures[rabbitmq]==1.3.11",
"prometheus-client>=0.8.0",
"mypy-zope==0.2.0",
"zope.interface==5.0.1",
"urllib3==1.26.5",
]
},
license="BSD",
classifiers=[
"License :: OSI Approved :: BSD License",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Intended Audience :: Developers",
],
entry_points={},
)