forked from cyface/django-termsandconditions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (59 loc) · 1.55 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
[tool.black]
line-length = 88
target-version = ['py36', 'py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
[tool.coverage.run]
branch = true
omit = [
"*/__init__.py",
"*/apps.py",
"*/devscripts*",
"*/docs/*",
"*/local_settings_template.py",
"*/manage.py",
"*/migrations/*",
"*/settings*",
"*/setup.py",
"*/tests*",
"*/wsgi.py"
]
[tool.poetry]
authors = ["Tim White <[email protected]>"]
classifiers = ["Development Status :: 5 - Production/Stable", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Internet :: WWW/HTTP"]
description = "Django app that enables users to accept terms and conditions of a site."
homepage = "https://github.com/cyface/django-termsandconditions"
license = "BSD"
name = "django-termsandconditions"
packages = [{ include = "termsandconditions" }, ]
readme = "README.md"
version = "2.0.8"
[tool.poetry.dependencies]
python = ">=3.6,<4.0"
Django = ">2.2"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
coverage = "^5.5"
poetry = "^1.1.8"
pylint = "^2.11.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"