-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
65 lines (57 loc) · 1.12 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
[metadata]
name = wfrp.character
version = attr: wfrp.character.__version__
author = Michael Davis
author_email = [email protected]
description = Character generator for Warhammer Fantasy Roleplay Version 4.
long_description = file: README.md, dos/HISTORY.md
[options]
zip_safe = False
packages = find_namespace:
package_dir =
=src
install_requires =
bcrypt
deform
pyramid
pyramid_chameleon
pyramid_debugtoolbar
pytest_factoryboy
pyramid_tm
sqlalchemy
waitress
weasyprint
zope.sqlalchemy
[options.extras_require]
testing =
black
flake8
isort
pre-commit
WebTest >= 1.3.1
pytest >= 3.7.4
pytest-cov
[options.packages.find]
where=src
exclude =
tests
[options.package_data]
* =
*.pt
static/*
[options.entry_points]
console_scripts =
init_db = wfrp.character.init_db:main
paste.app_factory =
main = wfrp.character.application:main
[tool:pytest]
testpaths = tests
markers =
package: package level tests
[flake8]
max-line-length = 88
extend-ignore = E203
max-complexity = 10
[isort]
force_single_line = true
force_sort_within_sections = true