-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (55 loc) · 1.65 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ProfiWiki"
authors = [
{name = "Wolfgang Fahl", email = "[email protected]"}
]
maintainers = [
{ name = "Wolfgang Fahl", email = "[email protected]" },
]
readme = "README.md"
license= "Apache-2.0"
dependencies = [
#https://pypi.org/project/pymediawikidocker/
"pymediawikidocker>=0.13.2",
# https://pypi.org/project/py-3rdparty-mediawiki/
"py-3rdparty-mediawiki>=0.13.5"
]
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 = "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"