-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
64 lines (46 loc) · 969 Bytes
/
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
#
[bdist_zapp]
entry_point = zapp.cli:main
[check]
metadata = 1
strict = 1
[metadata]
name = zapp
author = sinoroc
author_email = [email protected]
description = Build zipapp single file Python applications easily
license = Apache-2.0
license_file = LICENSE.txt
long_description = file: README.rst
long_description_content_type = text/x-rst
project_urls =
GitLab = https://gitlab.com/sinoroc/zapp
GitHub = https://github.com/sinoroc/zapp
url = https://pypi.org/project/zapp
[options]
install_requires =
importlib-metadata
setuptools
wheel
package_dir =
= src
packages = find:
[options.entry_points]
console_scripts =
zapp = zapp.cli:main
distutils.commands =
bdist_zapp = zapp.core:bdist_zapp
[options.extras_require]
package =
twine
wheel
test =
pytest
pytest-pycodestyle
pytest-pylint
[options.packages.find]
where = src
[tool:pytest]
addopts =
--pylint-error-types='CEFIRW'
# EOF