-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (49 loc) · 1.01 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
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "meeple-cli"
authors = [{ name = "Bradley Wojcik", email = "[email protected]" }]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = ["License :: OSI Approved :: MIT License"]
requires-python = ">=3.10"
dynamic = ["version", "description"]
dependencies = [
"arrow >=1",
"click >=8",
"rich >=13",
"xmltodict >=0.12.0",
"requests >=2",
"pyyaml >=6.0.1",
]
[project.scripts]
meeple = "meeple.root:cli"
[project.urls]
Home = "https://github.com/boldandbrad/meeple-cli"
[project.optional-dependencies]
test = [
"pytest >=6",
"pytest-cov",
"pytest-mock",
]
dev = [
"black",
"flake8",
"flit",
"isort",
"pre-commit",
"homebrew-pypi-poet",
"semgrep",
"refurb",
]
[tool.flit.module]
name = "meeple"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
[tool.ruff]
# Never enforce `E501` (line length violations).
ignore = ["E501"]