-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
44 lines (39 loc) · 1.36 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
[tool.poetry]
name = "mkgendocs"
version = "0.9.2"
repository = "https://github.com/davidenunes/mkgendocs"
homepage = "https://github.com/davidenunes/mkgendocs"
readme = 'README.md'
description = "mkgendocs is a Python tool to automate the generation of documentation from docstrings in markdown"
license = "Apache-2.0"
keywords = ["mkgendocs", "docs", "documentation", "automation", "mkdocs", "cli"]
authors = ["Davide Nunes <[email protected]>"]
classifiers = [
'Environment :: Console',
'Operating System :: OS Independent',
"Programming Language :: Python",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
'Programming Language :: Python :: 3 :: Only',
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
'Topic :: Documentation',
'Topic :: Text Processing'
]
[tool.poetry.scripts]
gendocs = 'mkgendocs.gendocs:main'
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
six = '*'
pyyaml = '*'
astor = '*'
mako = '*'
[tool.poetry.dev-dependencies]
pytest = "7.1.2"