-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (45 loc) · 1.06 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
from setuptools import find_packages
from setuptools import setup
try:
README = open('README.rst').read()
except IOError:
README = None
try:
VERSION = open('VERSION').read().strip('\n')
except IOError:
VERSION = None
setup(
name='guillotina_kafka',
version=VERSION,
description='Guillotina Kafka add-on',
long_description=README,
install_requires=[
'guillotina>5.0.0.dev0',
'aiokafka'
],
author='Sekou Oumar',
author_email='sekou@onna.com',
url='',
packages=find_packages(exclude=['demo']),
package_data={"": ["*.txt", "*.rst"], "guillotina_kafka": ["py.typed"]},
include_package_data=True,
tests_require=[
'pytest',
],
extras_require={
'test': [
'pytest',
'docker',
'backoff',
'psycopg2',
'pytest-asyncio>=0.8.0',
'pytest-aiohttp',
'pytest-cov',
'coverage>=4.4',
'pytest-docker-fixtures>=1.2.7',
]
},
classifiers=[],
entry_points={
}
)