-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (68 loc) · 1.99 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyCEURspt"
authors = [
{name = "Tim Holzheim", email = "[email protected]"},
{name = "Wolfgang Fahl", email = "[email protected]"}
]
maintainers = [
{ name = "Wolfgang Fahl", email = "[email protected]" },
{ name = "Tim Holzheim", email = "[email protected]" },
]
readme = "README.md"
license= "Apache-2.0"
dependencies = [
# https://pypi.org/project/fastapi/
"fastapi[all]",
# https://pypi.org/project/uvicorn/
"uvicorn",
# https://pypi.org/project/linkml-runtime/
"linkml-runtime",
# https://pypi.org/project/beautifulsoup4/
"beautifulsoup4",
# https://github.com/tqdm/tqdm
# optional?
"tqdm",
# https://pypi.org/project/PyYAML/
"PyYAML",
# https://github.com/ijl/orjson
"orjson>=3.8.9",
"bibtexparser",
# https://pypi.org/project/oauthlib/
"oauthlib"
]
requires-python = ">=3.9"
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License"
]
dynamic = ["version", "description"]
[tool.hatch.version]
path = "ceurspt/__init__.py"
[project.urls]
Home = "https://github.com/ceurws/ceur-spt"
Documentation = "https://github.com/ceurws/ceur-spt"
Source = "https://github.com/ceurws/ceur-spt"
[project.optional-dependencies]
test = [
"green",
]
[tool.hatch.build.targets.wheel]
only-include = ["ceurspt"]
[tool.hatch.build.targets.wheel.sources]
"ceurspt" = "ceurspt"
[project.scripts]
ceur-spt = "ceurspt.spt_cmd:main"