-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 862 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 862 Bytes
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
[project]
name = "doc2ann"
version = "0.2.0"
authors = [{ name = "Ava Silver", email = "ava@avasilver.dev" }]
description = "Tool to translate docstring types to annotations."
readme = "readme.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
]
dependencies = ["docstring_parser", "refactor"]
[project.optional-dependencies]
dev = ["pre-commit", "pytest", "mypy", "flake8", "black", "build", "twine"]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.scripts]
doc2ann = "doc2ann:main"
[tool.distutils.bdist_wheel]
universal = true