-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
78 lines (70 loc) · 1.91 KB
/
pyproject.toml
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
[tool.poetry]
name = "fundor_utilities"
version = "2.1.1"
description = ""
authors = ["Fundor333 <fundor333@fundor333.com>"]
keywords = ["django", "utilities"]
homepage = "https://github.com/fundor333/fundor_utilities"
repository = "https://github.com/fundor333/fundor_utilities"
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 3.0',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet :: WWW/HTTP',
]
[tool.poetry.dependencies]
python = "^3.8"
django = "^4.1"
openpyxl = "^3.0.10"
django-csv-export = "^0.0.3"
djangorestframework = "^3.11.0"
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
mkdocs = "^1.3.1"
mkdocs-material = "^8.4.1"
Pillow = "^9.3.0"
CairoSVG = "^2.5.2"
mike = "^1.1.2"
pymdown-extensions = "^9.5"
diagrams = "^0.21.1"
mkdocs-material-extensions = "^1.0.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.skjold]
sources = ["pyup", "gemnasium"] # Sources to check against.
report_only = true # Report only, always exit with zero.
cache_dir = '.skylt_cache' # Cache location (default: `~/.skjold/cache`).
cache_expires = 86400 # Cache max. age.
verbose = true # Be verbose.
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]