-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (48 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "Wikkid"
description = "VCS-backed wiki"
authors = [{name = "Wikkid Developers", email = "[email protected]"}]
dependencies = [
"breezy",
"docutils",
"dulwich",
"jinja2",
"merge3",
"pygments",
"twisted",
"webob",
"zope.interface",
]
dynamic = ["version"]
readme = "README.rst"
[project.urls]
Homepage = "https://launchpad.net/wikkid"
Repository = "https://github.com/wikkid-team/wikkid"
[project.optional-dependencies]
dev = [
"testtools",
"bs4",
"lxml",
]
testing = [
"testtools",
"bs4",
"lxml",
]
[tool.setuptools]
script-files = ["bin/wikkid-serve"]
package-dir = {"breezy.plugins.wikkid" = "plugin"}
include-package-data = true
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools.package-data]
"wikkid.skin" = [
"default/*.html",
"default/favicon.ico",
"default/static/*",
]
[tool.setuptools.dynamic]
version = {attr = "wikkid.version"}