-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (44 loc) · 1.35 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
[project]
name = "wiko"
version = "1.0.0"
authors = [
{name = "David García Garzón", email = "[email protected]"},
{name = "Pau Arumí Albò", email = "[email protected]"},
{name = "Natanael Olaiz"},
]
description = "WiKo: The wiki compiler, a static site and pdf generator."
keywords = [
"Static site generator",
"Wiki",
]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 7 - Inactive",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Wiki",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System",
]
dependencies = [
"gdata-python3",
"pyside6",
"utidylib",
"pygments",
"pillow",
]
[project.urls]
"Homepage" = "https://github.com/clam-project/wiko"
"Bug Tracker" = "https://github.com/clam-project/wiko/issues"
[tool.setuptools]
packages = ["wiko"]
[project.scripts]
wiko="wiko.wiko:main"
blogger2wiko="wiko.blogger2wiko:main"
wiko_download_area="wiko.generate_download_area:main"
wiko_gallery="wiko.generate_gallery:main"
wiko_figures="wiko.generate_figures:main"