-
Notifications
You must be signed in to change notification settings - Fork 63
/
setup.cfg
95 lines (87 loc) · 1.34 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[metadata]
name = dfp
description = Deep Floorplan (dfp)
author = Leo Leung
[options]
zip_safe = False
packages = find:
include_package_data = True
setup_requires = setuptools_scm
package_dir =
= src
[options.packages.find]
where = src
exclude =
tests
[options.extras_require]
tfcpu =
tensorflow-cpu
tensorboard
tensorflow-model-optimization
tfgpu =
tensorflow-gpu==2.3.0
tensorboard==2.3.0
tensorflow-model-optimization==0.5.0
tfmacm1 =
tensorflow-macos
tensorflow-metal
tensorboard
tensorflow-model-optimization
api =
Flask
Flask-Bcrypt
Flask-Classful
Flask-Cors
Flask-Ext
Flask-Jsonpify
Flask-Markdown
Flask-WTF
dev =
pre-commit
testing =
pytest
pytest-cov
pytest-mock
pytest-flask
linting =
black==22.3.0
isort==5.10.1
flake8==4.0.1
mypy==0.961
jupyter =
jupyterlab
notebook
game =
pygame
numba
[tool:pytest]
testpaths =
tests
addopts =
--cov src
--cov-report term-missing
--disable-warnings
--verbose
norecursedirs =
dist
build
.tox
resources
log
model
venv
[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
venv
log
model
resources