-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 895 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 895 Bytes
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
[tool.poetry]
authors = [ "Gordon So <gordonkwso@gmail.com>"]
name = "scimschema"
description = "A validator for System for Cross domain Identity Management (SCIM) responses given predefine schemas"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
include = [
"LICENSE",
"VERSION",
"README.rst",
"scimschema/core_schemas/*.json",
"py.typed",
]
homepage = "https://github.com/GordonSo/scimschema"
repository = "https://github.com/GordonSo/scimschema"
readme = "README.rst"
keywords = ["scimschema", "scim"]
version = "0.3.01"
[tool.poetry.dependencies]
python = ">=3.6"
[tool.poetry.dev-dependencies]
pytest = "*"
mypy = "*"
isort = "*"
pytest-cov = "*"
black = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"