-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
43 lines (39 loc) · 1.12 KB
/
setup.cfg
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
[metadata]
name = linuxforhealth-lib-kafka
version = attr: lib_kafka.__version__
description = LinuxForHealth lib-kafka is a Python 3.x asyncio client which wraps Confluent's Python Kafka client.
long_description: file: README.md
long_description_content_type = text/markdown
license: Apache 2.0
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Intended Audience :: Healthcare Industry
Intended Audience :: Developers
[options]
include_package_data = True
install_requires =
confluent-kafka >= 1.7.0, < 2.0.0
pydantic >= 1.8.2, < 2.0.0
python-dotenv >= 0.19.0, <= 0.25.0
packages=find:
package_dir=
=src
python_requires = >= 3.8
zip_safe = False
[options.extras_require]
test=
pytest >= 6.2.0, < 7.0.0
pytest-cov>= 2.7.0, < 3.0.0
twine >= 1.14.0, < 2.0.0
flake8 >= 3.7.0, < 4.0.0
asynctest >= 0.13.0, <= 0.25.0
build=
wheel >= 0.37.0, <= 0.50.0
[options.packages.find]
where=src
[flake8]
max-line-length=140