forked from dapr/python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (45 loc) · 977 Bytes
/
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
44
45
46
47
48
[metadata]
url = https://dapr.io/
author = Dapr Authors
author_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
project_urls =
Documentation = https://github.com/dapr/docs
Source = https://github.com/dapr/python-sdk
[options]
python_requires = >=3.7
packages = find_namespace:
include_package_data = True
zip_safe = False
install_requires =
protobuf == 3.11.3
grpcio == 1.26.0
aiohttp >= 3.6.2
python-dateutil >= 2.8.1
[options.packages.find]
include =
dapr.*
exclude =
ext
examples
tests
[flake8]
exclude =
venv,
build,
dist,
.git,
.tox,
dapr/proto,
examples
ignore = F821
max-line-length = 100