-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 885 Bytes
/
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
[tool.poetry]
name = "arcparse"
version = "1.3.0"
description = "Declare program arguments in a type-safe way"
license = "MIT"
authors = ["Jakub Rozek <[email protected]>"]
readme = "README.md"
repository = "https://github.com/Kuba314/arcparse"
keywords = ["argparse", "declarative", "argument", "parsing", "type-safe"]
classifiers = [
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
packages = [
{include = "arcparse"}
]
[tool.poetry.dependencies]
python = "^3.12"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
pyright = "^1.1.335"
pytest = "^7.4.3"
ruff = "^0.3.7"
[tool.ruff]
line-length = 120
[tool.ruff.lint.isort]
from-first = true
lines-after-imports = 2
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"