forked from tox-dev/filelock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
81 lines (72 loc) · 1.79 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
[metadata]
name = filelock
description = A platform independent file lock.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/tox-dev/py-filelock
author = Benedikt Schmitt
author_email = [email protected]
license = Unlicense
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: Public Domain
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Internet
Topic :: Software Development :: Libraries
Topic :: System
download_url = https://github.com/tox-dev/py-filelock/archive/main.zip
project_urls =
Source=https://github.com/tox-dev/py-filelock
Tracker=https://github.com/tox-dev/py-filelock/issues
[options]
packages = find:
python_requires = >=3.7
package_dir =
=src
zip_safe = True
[options.packages.find]
where = src
[options.extras_require]
docs =
furo>=2021.8.17b43
sphinx>=4.1
sphinx-autodoc-typehints>=1.12
testing =
covdefaults>=1.2.0
coverage>=4
pytest>=4
pytest-cov
pytest-timeout>=1.4.2
[options.package_data]
filelock = py.typed
[coverage:run]
plugins = covdefaults
parallel = true
[coverage:paths]
src =
src
.tox/*/lib/python*/site-packages
.tox/pypy*/site-packages
.tox\*\Lib\site-packages\
*/src
*\src
other =
.
*/py-filelock
*\py-filelock
[coverage:report]
fail_under = 88
[coverage:html]
show_contexts = true
skip_covered = false
[coverage:covdefaults]
subtract_omit = */.tox/*