-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
43 lines (38 loc) · 1.23 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mkdocs-translate"
authors = [
{name = "Jody Garnett", email = "[email protected]"},
]
description = "Translate from sphinx-build to mkdocs-material compatible markdown"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.9"
keywords = ["mkdocs", "markdown", "pandoc", "sphinx-build", "sphinx", "rst", "reStructuredText", "translate"]
license = {text = "MIT-License"}
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Environment :: Console",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
]
dependencies = [
"pyyaml",
"requests",
"typer",
"deepl"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://jodygarnett.github.io/translate/"
Documentation = "https://jodygarnett.github.io/translate/setup/"
Repository = "https://github.com/jodygarnett/translate.git"
Changelog = "https://github.com/jodygarnett/translate/blob/main/CHANGES"
[project.scripts]
mkdocs_translate = "mkdocs_translate.cli:app"
[tool.setuptools.dynamic]
version = {attr = "mkdocs_translate.__version__"}
[tool.distutils.bdist_wheel]
universal = true