-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
pyproject.toml
31 lines (27 loc) · 931 Bytes
/
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
[tool.poetry]
name = "aw-docs"
version = "0.1.0"
description = "Documentation for ActivityWatch"
authors = ["Erik Bjäreholt <[email protected]>", "Johan Bjäreholt <[email protected]>"]
license = "MPL-2.0"
packages = [{ include = "src/" }]
[tool.poetry.dependencies]
python = "^3.8"
# Packages to document
aw-core = {git = "https://github.com/ActivityWatch/aw-core.git", rev = "master"}
aw-server = {git = "https://github.com/ActivityWatch/aw-server.git", rev = "master"}
aw-client = {git = "https://github.com/ActivityWatch/aw-client.git", rev = "master"}
# Doc build deps
sphinx = "^4.0"
sphinx-autobuild = "*"
sphinx_rtd_theme = "*"
sphinx-book-theme = "*"
sphinx-tabs = "^3.0"
sphinx-click = "^4.3.0"
m2r2 = "*"
myst-parser = "*"
recommonmark = "^0.7.0"
setuptools = "*" # needed in Python 3.12+: https://github.com/CrossNox/m2r2/issues/72
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"