-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (44 loc) · 1.38 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
[tool.poetry]
name = "linkml_owl"
version = "0.0.0"
description = "OWL mappings for Linked Open Data Modeling Language"
authors = ["Chris Mungall <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/linkml/linkml-owl"
repository = "https://github.com/linkml/linkml-owl"
documentation = "https://github.com/linkml/linkml-owl"
keywords = ["linkml", "owl"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
[tool.poetry.scripts]
linkml-data2owl = "linkml_owl.dumpers.owl_dumper:cli"
[tool.poetry.dependencies]
python = "^3.8.1"
click = "*"
funowl = ">=0.2.3"
Jinja2 = ">=3.0.3"
linkml = "^1.7.10"
linkml-runtime = ">=1.7.0"
[tool.poetry.dev-dependencies]
tox = ">=3.24.5"
pytest = ">=6.2.5"
pytest-cov = ">=3.0.0"
mkdocs = ">=1.2.3"
black = ">=22.10.0"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"