-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
58 lines (50 loc) · 926 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
[metadata]
name = mlreading-hub
description = This repository is used to provide example for ml reading
author = Leo Leung
author-email = lyc010197@gmail.com
[options]
zip_safe = False
packages = find:
include_package_data = True
setup_requires = setuptools_scm
package_dir =
=src
[options.packages.find]
where = src
exclude =
tests
# 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:
addopts =
# --cov src
# --cov-report term-missing
# --disable-warnings
--verbose
norecursedirs =
dist
build
.tox
testpaths = tests
[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
notes