-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpyproject.toml
55 lines (51 loc) · 1.57 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
[tool.poetry]
name = "django-scim2"
version = "0.19.1"
description = "A partial implementation of the SCIM 2.0 provider specification for use with Django."
license = "MIT"
authors = ["Paul Logston <[email protected]>"]
maintainers = ["Devs <[email protected]>"]
readme = "README.rst"
homepage = "https://pypi.org/project/django-scim2/"
repository = "https://github.com/15five/django-scim2"
documentation = "https://django-scim2.readthedocs.io/en/stable/"
keywords = ["django", "scim", "scim2", "2.0"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "django_scim", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.9"
scim2-filter-parser = ">=0.5.0"
django = ">=4.2"
[tool.poetry.dev-dependencies]
mock = "^5.1.0"
tox = "^4.23.2"
flake8 = "^7.1.1"
toml = "^0.10.1"
flake8-isort = "^6.1.1"
pytest = ">=5.4.0"
pytest-django = "4.9.0"
coverage = "^7.6.10"
pytest-cov = "6.0.0"
[tool.black]
line-length = 100
skip-string-normalization = true
[build-system]
requires = ["poetry-core>=1.5.2"]
build-backend = "poetry.core.masonry.api"