21 lines
366 B
TOML
21 lines
366 B
TOML
[project]
|
|
name = "tinyscim"
|
|
version = "0.1"
|
|
description = "Small SCIM v2 implementation"
|
|
|
|
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3"
|
|
]
|
|
|
|
authors = [
|
|
{name = "Mikael Frykholm", email = "mikael@frykholm.com"},
|
|
]
|
|
|
|
dependencies = [
|
|
"fastapi",
|
|
"xattr",
|
|
"dulwich"
|
|
]
|