-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update docs, upgrade version, improve makefile
- Loading branch information
1 parent
3d58b35
commit 6797d34
Showing
4 changed files
with
108 additions
and
51 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -4,23 +4,24 @@ def readme(): | |
with open('README.md') as f: | ||
return f.read() | ||
|
||
def requirements(): | ||
with open('requirements.txt') as f: | ||
return f.read().splitlines() | ||
|
||
# https://pypi.org/project/mkdoxy/ | ||
setup( | ||
name='mkdoxy', | ||
version='1.0.2', | ||
description='MkDoxy → MkDocs + Doxygen. Easy documentation generator with code snippets.', | ||
version='1.0.3', | ||
description='MkDoxy → MkDocs + Doxygen = easy documentation generator with code snippets', | ||
long_description=readme(), | ||
long_description_content_type='text/markdown', | ||
keywords=['python', 'open-source', 'documentation', 'mkdocs', 'doxygen', 'multilanguage'], | ||
keywords=['mkdoxy', 'python', 'open-source', 'documentation', 'mkdocs', 'doxygen', 'multilanguage', 'code-snippets', 'code', 'snippets', 'documentation-generator'], | ||
url='https://github.com/JakubAndrysek/mkdoxy', | ||
author='Jakub Andrýsek', | ||
author_email='[email protected]', | ||
license='MIT', | ||
python_requires='>=3.8', | ||
install_requires=[ | ||
'mkdocs', | ||
'Jinja2', | ||
'ruamel.yaml', | ||
], | ||
install_requires=requirements(), | ||
classifiers=[ | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3.8', | ||
|