forked from jodal/pykka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
125 lines (111 loc) · 2.76 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[metadata]
name = Pykka
version = 3.0.0
url = https://www.pykka.org/
project_urls =
Source = https://github.com/jodal/pykka
Issues = https://github.com/jodal/pykka/issues
author = Stein Magnus jodal
author_email = [email protected]
license = Apache License, Version 2.0
license_file = LICENSE
description = Pykka is a Python implementation of the actor model
long_description = file: README.rst
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Topic :: Software Development :: Libraries
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >= 3.6
install_requires =
setuptools
[options.extras_require]
docs =
sphinx
sphinx_rtd_theme
lint =
black
check-manifest
flake8
flake8-bugbear
flake8-import-order
flake8-pyi
mypy
release =
twine
wheel
test =
pytest
pytest-cov
pytest-mock
dev =
%(docs)s
%(lint)s
%(release)s
%(test)s
tox
[options.packages.find]
exclude =
tests
tests.*
[flake8]
application-import-names = pykka,tests
exclude = .git,.tox,.venv
max-line-length = 80
select =
# Regular flake8 rules
C, E, F, W
# flake8-bugbear rules
B
# B950: line too long (soft speed limit)
B950
# flake8-import-order rules
I
# flake8-pyi rules
Y0
ignore =
# E203: whitespace before ':' (not PEP8 compliant)
E203
# E501: line too long (replaced by B950)
E501
# W503: line break before binary operator (not PEP8 compliant)
W503
# W504: line break after binary operator (incorrect for pyi files)
W504
# E301: expected 1 blank line, found 0 (incorrect for pyi files)
E301
# E302: expected 2 blank lines, found 0 (incorrect for pyi files)
E302
# E305: expected 2 blank lines after class or function definition, found 1
# (incorrect for pyi files)
E305
# E701: multiple statements on one line (incorrect for pyi files)
E701
# E704: multiple statements on one line (incorrect for pyi files)
E704
[mypy]
no_implicit_optional = True
warn_return_any = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_unused_configs = True
strict_equality = True
[mypy-pykka.*]
disallow_untyped_defs = True
[mypy-eventlet.*]
ignore_missing_imports = True
[mypy-gevent.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True