-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
60 lines (44 loc) · 928 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
#
[check]
metadata = 1
strict = 1
[metadata]
name = toolmaker
author = sinoroc
author_email = sinoroc.code+python@gmail.com
description = Make single-file builds of Python tools using zapp, shiv, or pex
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/toolmaker
GitHub = https://github.com/sinoroc/toolmaker
url = https://pypi.org/project/toolmaker/
[options]
install_requires =
importlib-metadata
pex
shiv
zapp>=0.0.6
package_dir =
= src
packages = find:
[options.entry_points]
console_scripts =
toolmaker = toolmaker.cli:main
[options.extras_require]
package =
twine
wheel
zapp
test =
pytest
pytest-pycodestyle
pytest-pylint
[options.packages.find]
where = src
[tool:pytest]
addopts =
--pylint-error-types='CEFIRW'
# EOF