|
| 1 | +[build-system] |
| 2 | +requires = ["poetry-core>=1.0.0"] |
| 3 | +build-backend = "poetry.core.masonry.api" |
| 4 | + |
| 5 | +[tool.poetry] |
| 6 | +name = "docstring_parser" |
| 7 | +version = "0.13" |
| 8 | +description = "Parse Python docstrings in reST, Google and Numpydoc format" |
| 9 | +authors = ["Marcin Kurczewski <dash@wind.garden>"] |
| 10 | +license = "MIT" |
| 11 | +readme = "README.md" |
| 12 | +repository = "https://github.com/rr-/docstring_parser" |
| 13 | +classifiers = [ |
| 14 | + "Environment :: Other Environment", |
| 15 | + "Development Status :: 4 - Beta", |
| 16 | + "Intended Audience :: Developers", |
| 17 | + "License :: OSI Approved :: MIT License", |
| 18 | + "Natural Language :: English", |
| 19 | + "Operating System :: OS Independent", |
| 20 | + "Programming Language :: Python :: 3.6", |
| 21 | + "Programming Language :: Python :: 3.7", |
| 22 | + "Programming Language :: Python :: 3.8", |
| 23 | + "Programming Language :: Python :: 3.9", |
| 24 | + "Topic :: Documentation :: Sphinx", |
| 25 | + "Topic :: Text Processing :: Markup", |
| 26 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 27 | +] |
| 28 | +packages = [ |
| 29 | + { include = "docstring_parser" } |
| 30 | +] |
| 31 | +include = ["docstring_parser/py.typed"] |
| 32 | + |
| 33 | +[tool.poetry.dependencies] |
| 34 | +python = ">=3.6,<4.0" |
| 35 | + |
| 36 | +[tool.poetry.dev-dependencies] |
| 37 | +pre-commit = {version = ">=2.16.0", python = ">=3.9"} |
| 38 | +pytest = "*" |
| 39 | + |
1 | 40 | [tool.black] |
2 | 41 | line-length = 79 |
3 | 42 | py36 = true |
|
0 commit comments