-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
55 lines (47 loc) · 1.04 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "euchre-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 = [
"click >=8",
"names ==0.3.0",
"loguru >=0.5.0",
]
[project.scripts]
euchre = "euchre.root:cli"
[project.urls]
Home = "https://boldandbrad.github.io/euchre-cli/"
Source = "https://github.com/boldandbrad/euchre-cli"
[project.optional-dependencies]
test = [
"pytest >=6",
"pytest-cov",
"pytest-mock",
]
dev = [
"black",
"flake8",
"flit",
"isort",
"pre-commit",
"homebrew-pypi-poet",
"refurb",
]
[tool.flit.module]
name = "euchre"
[tool.isort]
profile = "black"
skip = ["src/euchre/abstract/__init__.py"]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
[tool.ruff]
# Never enforce `E501` (line length violations).
ignore = ["E501"]