forked from ewjoachim/sphinx-github-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (42 loc) · 1.12 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
[tool.poetry]
name = "sphinx-github-changelog"
version = "0.0.0"
description = "Build a sphinx changelog from GitHub Releases"
authors = ["Joachim Jablon <ewjoachim@gmail.com>"]
license = "MIT"
classifiers = [
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Framework :: Sphinx",
"Framework :: Sphinx :: Extension",
]
readme = "README.rst"
keywords = ["sphinx", "github", "releases", "changelog"]
homepage = "https://sphinx-github-changelog.readthedocs.io/en/latest/"
repository = "https://github.com/ewjoachim/sphinx-github-changelog"
documentation = "https://sphinx-github-changelog.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = "^3.8"
docutils = "*"
requests = "*"
Sphinx = "*"
[tool.poetry.group.dev.dependencies]
black = "*"
check-manifest = "*"
doc8 = "*"
flake8 = "*"
isort = "*"
mypy = "*"
pytest = "*"
pytest-cov = "*"
pytest-mock = "*"
requests-mock = "*"
pre-commit = "*"
dunamai = "*"
types-requests = "*"
types-docutils = "*"
[tool.poetry.group.docs.dependencies]
sphinx-rtd-theme = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"