-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 1.19 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[project]
name = "click_with_aliasing"
version = "1.0.4"
description = "A library that allows you to add aliases to your Click group and commands."
authors = [
{ name = "Marcus Fredriksson", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = { file = "LICENSE" }
requires-python = ">=3.11"
readme = "README.md"
dependencies = ["click>=8.1.8"]
keywords = ["click", "alias", "group", "command"]
[project.optional-dependencies]
build = ["build", "twine"]
dev = [
"black>=24.10.0",
"pytest>=8.3.4",
"isort>=5.13.2",
"pylint>=3.3.2",
"pre-commit>=4.0.1",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["click_with_aliasing"]
py-modules = ["cwa"]
[tool.black]
line-length = 80
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 80
[project.urls]
Homepage = "https://github.com/marcusfrdk/click-with-aliasing"
Repository = "https://github.com/marcusfrdk/click-with-aliasing"
Issues = "https://github.com/marcusfrdk/click-with-aliasing/issues"