forked from pnpnpn/timeout-decorator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
59 lines (55 loc) · 1.48 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
[metadata]
name = timeoutd
version = file:VERSION
description = Simple way to add a timeout to any Python code.
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/juhannc/timeoutd
author = Johann Christensen
author_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Libraries :: Python Modules
Typing :: Typed
platforms =
any
project_urls =
# Documentation =
Source = https://github.com/juhannc/timeoutd.git
Tracker = https://github.com/juhannc/timeoutd/issues
[options]
zip_safe = False
packages = find:
include_package_data = True
install_requires =
python_requires = >=3.8
[options.extras_require]
tests =
coverage
flake8
mypy
pycodestyle
pytest >= 6.2.2
pytest-cov
all =
%(tests)s
[flake8]
max-line-length = 88
max-complexity = 10
# E203: violates PEP8
# SIM300: Yoda conditions might be more reliable but not more readable
extend-ignore = E203, SIM300
[mypy]
python_version = 3.8
ignore_missing_imports = True