This repository has been archived by the owner on Jun 21, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
122 lines (108 loc) · 3.06 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# Poetry pyproject.toml: https://python-poetry.org/docs/pyproject/
[build-system]
build-backend = "poetry.core.masonry.api"
requires = [
"setuptools",
"poetry_core>=1.0.0",
]
[tool.poetry]
name = "groundwork-django"
version = "0.1.6"
description = "An integrated Django and Javascript framework for people who build tools for organisers."
readme = "README.md"
authors = ["Common Knowledge <[email protected]>"]
license = "GNU GPL v3.0"
repository = "https://github.com/commonknowledge/groundwork"
homepage = "https://groundwork.commonknowledge.coop/"
packages = [
{ include = "groundwork" }
]
exclude = []
# Keywords description https://python-poetry.org/docs/pyproject/#keywords
keywords = [] #! Update me
# Pypi classifiers: https://pypi.org/classifiers/
classifiers = [ #! Update me
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = "^3.9"
schedule = "^1.1.0"
djangorestframework-camel-case = "^1.2.0"
djangorestframework-dataclasses = "^1.0.0"
[tool.poetry.dev-dependencies]
django = '^4.1'
django-vite = "^2.0.2"
bandit = "^1.7.0"
black = {version = "^22.3.0", allow-prereleases = true}
dj-database-url = '>=0.5.0'
darglint = "^1.8.0"
isort = {extras = ["colors"], version = "^5.9.3"}
mkdocs = "^1.2.3"
mkdocs-material = "^8.2.8"
pdoc3 = "^0.10.0"
pre-commit = "^2.17.0"
psycopg2 = '^2.8.6'
pydocstyle = "^6.1.1"
pylint = "^2.10.2"
pytest = "^7.1.1"
pytest-django = "^4.4.0"
pyupgrade = "^2.24.0"
safety = "*"
setuptools = "*"
wheel = "^0.38.0"
[tool.black]
# https://github.com/psf/black
target-version = ["py39"]
line-length = 88
color = true
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| node_modules
| build
| dist
| env
| venv
)/
'''
[tool.isort]
# https://github.com/timothycrosley/isort/
py_version = 39
line_length = 88
known_typing = ["typing", "types", "typing_extensions", "mypy", "mypy_extensions"]
sections = ["FUTURE", "TYPING", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
include_trailing_comma = true
profile = "black"
multi_line_output = 3
indent = 4
color_output = true
[tool.pytest.ini_options]
# https://docs.pytest.org/en/6.2.x/customize.html#pyproject-toml
# Directories that are not visited by pytest collector:
norecursedirs =["hooks", "*.egg", ".eggs", "dist", "build", "docs", ".tox", ".git", "__pycache__"]
doctest_optionflags = ["NUMBER", "NORMALIZE_WHITESPACE", "IGNORE_EXCEPTION_DETAIL"]
# Extra options:
addopts = [
"--strict-markers",
"--tb=short",
"--doctest-modules",
"--doctest-continue-on-failure",
]
markers = [
"integration_test: marks tests as integrtation tests (not run in make lint)",
]
DJANGO_SETTINGS_MODULE = "settings"
python_files = "tests.py test_*.py *_tests.py"