-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
32 lines (29 loc) · 878 Bytes
/
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
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "pydantic_cidoc_crm"
author = "Jonas Engelmann"
author-email = "[email protected]"
home-page = "https://github.com/jonasengelmann/pydantic-cidoc-crm"
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
]
requires = [
"pydantic",
"rdflib",
]
description-file = "README.md"
requires-python = ">=3.6.1"
[tool.flit.metadata.urls]
Documentation = "https://github.com/jonasengelmann/pydantic-cidoc-crm"
[tool.flit.metadata.requires-extra]
dev = [
"pre-commit==2.20.0",
]