-
-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathpyproject.toml
59 lines (55 loc) · 1.73 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
[tool.poetry]
name = "django-invitations"
version = "2.1.0"
description = "Generic invitations app with support for django-allauth"
authors = ["bee-keeper"]
homepage = "https://github.com/jazzband/django-invitations/"
repository = "https://github.com/jazzband/django-invitations/"
documentation = "https://django-invitations.readthedocs.io/en/latest/"
license = "GPL-3.0-only"
maintainers = ["JazzBand"]
readme = "README.md"
keywords = ['django', 'invitation', 'django-allauth', 'invite']
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment",
"Topic :: Internet",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
packages = [
{ include = "invitations" }
]
[tool.poetry.dependencies]
python = "^3.8"
django = ">=3.2"
[tool.poetry.group.dev.dependencies]
coverage = "^6.3.2"
flake8 = "^5.0.4"
freezegun = "^1.2.1"
pytest = "^7.1.1"
pytest-django = "^4.5.2"
pytest-cov = "^3.0.0"
tox = "3.26.0"
black = "^22.1.0"
pre-commit = "^3.2.0"
[tool.black]
line-length = 88
target-version = ["py310"]
extend-exclude = "/migrations/"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"