-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
74 lines (66 loc) · 2.1 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
# see https://flit.pypa.io/en/latest/pyproject_toml.html
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyWikiCMS"
description = "pyWikiCMS: python implementation of a Mediawiki based Content Management System"
home-page = "https://github.com/BITPlan/pyWikiCMS"
authors = [
{name = "Wolfgang Fahl", email = "[email protected]"}
]
maintainers = [
{ name = "Wolfgang Fahl", email = "[email protected]" },
]
readme = "README.md"
license = {text = "Apache-2.0"}
dependencies = [
# https://github.com/WolfgangFahl/nicegui_widgets
"ngwidgets>=0.19.4",
# https://pypi.org/project/pylodstorage/
"pyLodStorage>=0.13.3",
# https://pypi.org/project/py-3rdparty-mediawiki/
'py-3rdparty-mediawiki>=0.14.0',
# Beautiful Soup HTML parser
# https://pypi.org/project/beautifulsoup4/
'beautifulsoup4>=4.9.3',
# https://pypi.org/project/lxml/
'lxml',
#https://pypi.org/project/pydevd/
'pydevd',
# https://pypi.org/project/rdflib/
'rdflib>=7.0.0'
]
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 :: User Interfaces",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License"
]
dynamic = ["version"]
[tool.hatch.version]
path = "frontend/__init__.py"
[project.urls]
Home = "https://github.com/BITPlan/pyWikiCMS"
Documentation = "https://wiki.bitplan.com/index.php/PyWikiCMS"
Source = "https://github.com/BITPlan/pyWikiCMS"
[project.optional-dependencies]
test = [
"green",
]
[tool.hatch.build.targets.wheel]
only-include = ["frontend"]
[tool.hatch.build.targets.wheel.sources]
"frontend" = "frontend"
[project.scripts]
wikicms = "frontend.cmsmain:main"