forked from 20c/pymdgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (28 loc) · 1009 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
[build-system]
requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pymdgen"
version = "1.0.0.1"
description = "python code markdown documentation generator"
authors = [ "20C <code@20c.com>",]
license = "Apache-2.0"
classifiers = [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",]
include = [ "LICENSE", "Ctl/VERSION", "src/pymdgen/*.py",]
[tool.poetry.scripts]
pymdgen = "pymdgen.cli:main"
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
codecov = ">=2.0.5"
coverage = ">=4.1"
pytest-cov = "*"
bandit = "^1.6.2"
black = "^20.8b1"
isort = "^5.7.0"
flake8 = "^3.8.4"
markdown = "*"
markdown-include = ">=0.5,<1"
mkdocs = ">=1.0.0,<2.0.0"
[tool.poetry.plugins."markdown.extensions"]
pymdgen = "pymdgen.md:Extension"