forked from timothycrosley/pdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 1014 Bytes
/
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
[tool.poetry]
name = "pdocs"
version = "1.1.1"
description = "A simple program and library to auto generate API documentation for Python modules."
authors = ["Timothy Crosley <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.6"
Markdown = "^3.0.0"
Mako = "^1.1"
hug = "^2.6"
docstring_parser = "^0.7.2"
dataclasses = { version="^0.7", python="^3.6, <3.7" }
[tool.poetry.dev-dependencies]
mypy = "^0.720.0"
isort = "^4.3"
pytest = "^5.1"
pytest-cov = "^2.7"
flake8-bugbear = "^19.8"
bandit = "^1.6"
vulture = "^1.0"
safety = "^1.8"
black = {version = "^18.3-alpha.0", allows-prereleases = true}
pytest-mock = "^1.10"
ipython = "^7.7"
flake8 = "^3.7"
pep8-naming = "^0.8.2"
[tool.poetry.scripts]
pdocs = "pdocs.cli:__hug__.cli"
[tool.portray.mkdocs.theme]
favicon = "art/logo.png"
logo = "art/logo.png"
name = "material"
palette = {primary = "deep purple", accent = "pink"}
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"