-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
45 lines (40 loc) · 929 Bytes
/
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
[tool.poetry]
name = "django-cookiebanner"
version = "0.2.8"
description = ""
authors = [
"Andreas Nüßlein <andreas@sinnwerkstatt.com>",
"Ralph Delfs <ralph.delfs@sinnwerkstatt.com>",
"Christoph Zamaitat <christoph.zamaitat@sinnwerkstatt.com>",
]
readme = "README.md"
license = "GPL-3.0+"
repository = "https://github.com/sinnwerkstatt/django-cookiebanner"
keywords = ["django", "cookie", "gdpr", "dsgvo"]
include = ["CHANGELOG.md"]
packages = [
{ include = "cookiebanner" }
]
[tool.poetry.dependencies]
python = ">=3.8"
django = "~4.2"
[tool.poetry.dev-dependencies]
pytest-django = "*"
pytest-cov = "*"
black = "*"
[tool.black]
line-length = 88
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| migrations
| static-collected
| node_modules
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"