-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
59 lines (52 loc) · 952 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
[metadata]
name = pypack-guide
description = Test Python Package
author = Yui Chun Leung
long_description = file: README.md
long_description_content_type = text/markdown
[options]
zip_safe = False
packages = find:
include_package_data = True
python_requires = >=3.6
setup_requires = setuptools_scm
package_dir =
= src
[options.packages.find]
where = src
exclude =
test app
# Additional install requirements for running tests
[options.extras_require]
testing =
pytest
pytest-cov
pytest-mock
linting =
black==22.3.0
isort==5.9.2
flake8==3.8.4
[tool:pytest]
# Options for py.test:
testpaths =
test
addopts =
--cov src
--cov-report term-missing
--disable-warnings
--verbose
norecursedirs =
dist
build
.tox
[tool.setuptools_scm]
version_scheme = guess-next-dev
[bdist_wheel]
universal = 1
[flake8]
ignore = E203 W503 W291 W293
max-line-length = 79
exclude =
.tox
dist
.eggs