forked from pyinstaller/pyinstaller-hooks-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
60 lines (52 loc) · 1.64 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
[sdist]
formats=gztar
[bdist_wheel]
universal=1
[metadata]
name = pyinstaller-hooks-contrib
version = attr: _pyinstaller_hooks_contrib.__version__
description = Community maintained hooks for PyInstaller
url = https://github.com/pyinstaller/pyinstaller-hooks-contrib
download-url = https://pypi.org/project/pyinstaller-hooks-contrib
keywords = pyinstaller development hooks
classifiers =
Intended Audience :: Developers
Topic :: Software Development :: Build Tools
License :: OSI Approved :: Apache Software License
License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
maintainer = Legorooj
maintainer_email = [email protected]
long_description_content_type = text/markdown
long-description = file: README.md
[options]
zip_safe = false
include_package_data = true
package_dir=
=src
packages=find:
python_requires = >=3.7
install_requires =
setuptools >= 42.0.0
importlib_metadata >= 4.6 ; python_version < "3.10"
packaging >= 22.0
[options.packages.find]
where=src
[options.package_data]
* = *.txt
[flake8]
# E265 - block comment should start with '# '
extend-ignore = E265
max-line-length=120
[tool:pytest]
# Display summary info for (s)skipped, (x)xfailed, (X)xpassed, (f)failed and (E)errored tests
# Skip doctest text files
addopts=--maxfail=3 -m "not slow" -v -rsxXfE --doctest-glob=
markers =
darwin: only run on macOS
linux: only runs on GNU/Linux
win32: only runs on Windows
slow: Long tests are disabled by default. Re-enable with -m slow