Skip to content
This repository was archived by the owner on Nov 24, 2023. It is now read-only.

Commit 774e602

Browse files
committed
Add project config
1 parent 7e15ae8 commit 774e602

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

pyproject.toml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[build-system]
2+
requires = ["setuptools", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "pydocstyle-gitlab-code-quality"
7+
version = "0.0.1"
8+
authors = [
9+
{ name = "Aleksander Kluczka", email = "[email protected]" },
10+
]
11+
description = "Simple script to generate gitlab code quality report from output of pydocstyle."
12+
readme = "README.md"
13+
requires-python = ">=3.7"
14+
license = { file = "LICENSE.md" }
15+
classifiers = [
16+
"Development Status :: 3 - Alpha",
17+
"License :: OSI Approved :: MIT License",
18+
"Operating System :: OS Independent",
19+
"Programming Language :: Python :: 3",
20+
"Programming Language :: Python :: 3.7",
21+
"Programming Language :: Python :: 3.8",
22+
"Programming Language :: Python :: 3.9",
23+
"Programming Language :: Python :: 3.10",
24+
"Programming Language :: Python :: 3.11",
25+
]
26+
27+
[project.urls]
28+
"Homepage" = "https://github.com/vis4rd/pydocstyle-gitlab-code-quality"
29+
"Bug Tracker" = "https://github.com/vis4rd/pydocstyle-gitlab-code-quality/issues"
30+
31+
[project.entry-points."pydocstyle_gitlab_code_quality"]
32+
cli = "pydocstyle_gitlab_code_quality:main"

0 commit comments

Comments
 (0)