-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (57 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
62 lines (57 loc) · 1.18 KB
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
55
56
57
58
59
60
61
62
[project]
name = "hodrl"
version = "v0.1.0"
dependencies = [
"sparqlwrapper"
]
requires-python = ">=3.10"
authors = [
{name = "Oliver Woolland", email = "oliver.woolland@manchester.ac.uk"},
]
maintainers = [
{name = "Oliver Woolland", email = "oliver.woolland@manchester.ac.uk"}
]
description = "hODRL: Keep the hordes at bay with Python execution of ODRL policies."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
keywords = ["odrl", "rdf"]
classifiers = [
"Programming Language :: Python"
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
test = [
"pytest",
"click>=8.0",
"fastapi==0.116.0",
"uvicorn==0.35.0",
"httpx",
"dash",
"dash-iconify",
"dash-bootstrap-components",
"dash-mantine-components",
]
cli = [
"click>=8.0"
]
ui = [
"dash",
"dash-iconify",
"dash-bootstrap-components",
"dash-mantine-components",
]
api = [
"fastapi==0.116.0",
"uvicorn==0.35.0"
]
[project.urls]
Repository = "https://github.com/OliverWoolland/hodrl.git"
[project.scripts]
hodrl = "hodrl:main"
hodrl-cli = "hodrl.cli:main"
hodrl-api = "hodrl.api:main"
hodrl-ui = "hodrl.ui.app:main"