-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.71 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools-scm[toml]>=6.2", "setuptools>=45"]
[project]
name = "format-docstring"
version = "0.2.7"
dependencies = [
"click>=8.0",
"jupyter-notebook-parser>=0.1.4",
"tomli>=1.1.0; python_version<'3.11'",
]
requires-python = ">=3.10"
authors = [{name = "jsh9", email = "25124332+jsh9@users.noreply.github.com"}]
maintainers = [
{name = "jsh9", email = "25124332+jsh9@users.noreply.github.com"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
]
description = "A Python formatter to wrap/adjust docstring lines"
keywords = ["code-style", "docstring", "formatter", "python"]
license = {text = "MIT"}
readme = "README.md"
[project.scripts]
format-docstring = "format_docstring.main_py:main"
format-docstring-jupyter = "format_docstring.main_jupyter:main"
[project.urls]
Homepage = "https://github.com/your/repo"
Issues = "https://github.com/your/repo/issues"
Repository = "https://github.com/your/repo.git"
[tool.mypy]
strict = true
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = "jupyter_notebook_parser"
[tool.setuptools.package-data]
"*" = ["py.typed"]
[tool.setuptools.packages.find]
exclude = ["testing*", "tests*"]