-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed dependency on deprecated distutils package + Updated project to…
… use pyproject.toml instead of setup.py
- Loading branch information
Showing
7 changed files
with
65 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
"""Init module of MkDocs Merge""" | ||
|
||
|
||
__version__ = '0.8.0' | ||
__version__ = '0.9.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
[build-system] | ||
requires = ["setuptools>=42", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "mkdocs-merge" | ||
version = "0.9.0" | ||
description = "Tool to merge multiple MkDocs sites into a single directory" | ||
readme = "README.md" | ||
license = { text = "MIT" } | ||
authors = [ | ||
{ name = "Oscar Vasquez", email = "oscar@vasquezcr.com" } | ||
] | ||
keywords = ["mkdocs", "documentation", "merge", "multiple"] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Topic :: Documentation", | ||
"Topic :: Text Processing", | ||
"Environment :: Console", | ||
"Environment :: Web Environment", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10" | ||
] | ||
dependencies = [ | ||
"click>=5.0", | ||
"mkdocs>=1.0", | ||
"ruamel.yaml>=0.17" | ||
] | ||
|
||
[project.urls] | ||
homepage = "https://github.com/ovasquez/mkdocs-merge" | ||
repository = "https://github.com/ovasquez/mkdocs-merge" | ||
download = "https://github.com/ovasquez/mkdocs-merge/archive/main.zip" | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"tox>=3.0", | ||
"pytest", | ||
"pytest-cov" | ||
] | ||
|
||
[project.scripts] | ||
mkdocs-merge = "mkdocsmerge.__main__:cli" |