-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 899 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
33
34
35
36
37
38
39
[tool.poetry]
name = "ottr"
version = "0.1.0"
description = "Manipulate OTTR Reasonable Ontology Templates in Python"
documentation = "https://callidon.github.io/pyOTTR"
authors = ["Thomas Minier <tminier01@gmail.com>"]
license = "MIT"
readme = "README.md"
keywords = [
"rdf",
"owl",
"ottr",
"template",
"ontology"
]
classifiers = [
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Code Generators",
"Topic :: Text Processing :: Markup"
]
include = [ "LICENSE" ]
[tool.poetry.urls]
"Github" = "https://github.com/Callidon/pyOTTR"
"Bug Tracker" = "https://github.com/Callidon/pyOTTR/issues"
[tool.poetry.dependencies]
python = "^3.6"
rdflib = "^4.2"
pyparsing = "^2.4"
[tool.poetry.dev-dependencies]
pytest = "^5.3"
sphinx = "^2.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"