forked from robinhood/faust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
93 lines (81 loc) · 2.32 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[bumpversion]
current_version = 1.0.27
commit = true
tag = true
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<releaselevel>[a-z]+)?
serialize =
{major}.{minor}.{patch}{releaselevel}
{major}.{minor}.{patch}
[metadata]
name = faust
version = attr: faust.__version__
author = Robinhood Markets, Inc.
author_email = [email protected]
url = http://faust.readthedocs.io
description = Python Stream Processing
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = stream, processing, asyncio, distributed, queue, kafka
license = BSD 3-Clause License
license_file = LICENSE
classifiers =
Framework :: AsyncIO
Development Status = : 5 - Production/Stable
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Operating System :: POSIX
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: BSD
Operating System :: Microsoft :: Windows
Topic :: System :: Networking
Topic :: System :: Distributed Computing
[options]
zip_safe = False
include_package_data = True
packages = faust
[wheel]
universal = 1
[tool:pytest]
minversion = 3.0
testpaths = t/unit t/functional
python_classes = test_*
open_files = True
base_url = http://localhost:6066
[yapf]
based_on_style = pep8
spaces_before_comment = 2
allow_multiline_dictionary_keys = True
[flake8]
ignore = N806,N802,N801,N803,I201,D102,D104,D107,D203,D105,D213,D406,D407,D413,I100,I202,B008
max_complexity = 24
[pep257]
ignore = D102,D104,D107,D203,D105,D213,D406,D407,D413
[mypy]
python_version = 3.6
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_unused_configs = True
disallow_subclassing_any = False
warn_return_any = False
disallow_untyped_decorators = False
warn_incomplete_stub = False
ignore_missing_imports = True
show_error_context = True
cache_fine_grained = True
show_column_numbers = True
disallow_any_expr = False
disallow_any_unimported = False
disallow_any_decorated = False
disallow_any_generics = False
follow_imports = skip
[bumpversion:file:faust/__init__.py]
[bumpversion:file:docs/includes/tags.txt]
[bumpversion:file:README.rst]