forked from linkedin/shiv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
69 lines (60 loc) · 1.47 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
[flake8]
max-line-length = 120
max-complexity = 15
exclude = docs test/package/setup.py
extend-ignore = C901
[tool:pytest]
addopts = --ignore build/ --ignore dist/ test/
[mypy]
mypy_path = src/
strict_optional = yes
disallow_untyped_defs = no
[isort]
line_length = 120
indent=' '
multi_line_output=3
lines_between_types = 1
include_trailing_comma = true
use_parentheses = true
not_skip = __init__.py
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[metadata]
name = shiv
version = attr: shiv.__version__
description = A command line utility for building fully self contained Python zipapps.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/linkedin/shiv
author = Loren Carvalho
author_email = [email protected]
license = BSD License
license_file = LICENSE
classifiers =
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
package_dir =
=src
packages = find:
install_requires =
click>=6.7,!=7.0
pip>=9.0.3
setuptools
python_requires = >=3.8
include_package_data = True
[options.extras_require]
rtd =
sphinx-click
[options.packages.find]
where=src
[options.entry_points]
console_scripts =
shiv = shiv.cli:main
shiv-info = shiv.info:main
[bdist_wheel]
universal = True