-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (41 loc) · 1.03 KB
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
[tool.poetry]
name = "moin2gitwiki"
version = "0.8.0"
description = "MoinMoin To Git (Markdown) Wiki Converter"
authors = ["Nigel Metheringham <nigelm@cpan.org>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/nigelm/moin2gitwiki"
repository = "https://github.com/nigelm/moin2gitwiki"
documentation = "https://nigelm.github.io/moin2gitwiki/"
include = [
"CHANGELOG.md",
"README.md",
"tests/*",
"docs/*"
]
exclude = [
"**/__pycache__",
"**/*.py[oc]"
]
[tool.poetry.scripts]
moin2gitwiki = "moin2gitwiki.cli:moin2gitwiki"
[tool.poetry.dependencies]
python = "^3.8"
click = "^7.1.2"
attrs = "^20.3.0"
requests = {extras = ["socks"], version = "^2.25.1"}
furl = "^2.1.0"
beautifulsoup4 = "^4.9.3"
[tool.poetry.dev-dependencies]
pytest = "^6.2.0"
pytest-runner = "^5.2"
bump2version = "^1.0.1"
mkdocs = "^1.1.2"
mkdocs-material = "^6.1.7"
mkdocstrings = "^0.13.6"
markdown-include = "^0.6.0"
mkdocs-click = "^0.2.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"