-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.92 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
63
64
65
66
67
68
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ProfiWiki"
description = "BITPlan's Professional SemanticMediaWiki"
authors = [
{name = "Wolfgang Fahl", email = "wf@bitplan.com"}
]
maintainers = [
{ name = "Wolfgang Fahl", email = "wf@bitplan.com" },
]
readme = "README.md"
license= "Apache-2.0"
dependencies = [
# https://pypi.org/project/pybasemkit/
# https://github.com/WolfgangFahl/pybasemkit
# Python base module kit: YAML/JSON I/O, structured logging, CLI tooling, shell execution, and remote pydevd debug support.
"pybasemkit>=0.2.0",
#https://pypi.org/project/pymediawikidocker/
"pymediawikidocker>=0.23.4",
# https://pypi.org/project/py-3rdparty-mediawiki/
"py-3rdparty-mediawiki>=0.18.1"
]
requires-python = ">=3.10"
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"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"]
[tool.hatch.version]
path = "profiwiki/__init__.py"
[project.urls]
Home = "https://github.com/BITPlan/ProfiWiki"
Documentation = "https://wiki.bitplan.com/index.php/ProfiWiki"
Source = "https://github.com/BITPlan/ProfiWiki"
[project.optional-dependencies]
test = [
"green",
"pydevd",
# https://pypi.python.org/pypi/ptvsd
"ptvsd"
]
[tool.hatch.build.targets.wheel]
only-include = ["profiwiki"]
[tool.hatch.build.targets.wheel.sources]
"profiwiki" = "profiwiki"
[project.scripts]
profiwiki = "profiwiki.profiwiki_cmd:main"