-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
75 lines (65 loc) · 1.82 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "dj-beat-drop"
version = "0.5.5"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"inquirerpy>=0.3.4",
"packaging>=24.1",
"requests>=2.32.3",
"setuptools>=75.1.0",
"typer>=0.12.5",
"uv>=0.4.26",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Framework :: Django",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Build Tools",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pytest-cov>=5.0.0",
"pytest>=8.3.3",
"ruff-lsp>=0.0.57",
"ruff>=0.6.9",
]
[tool.uv.workspace]
exclude = ["test_project*"]
[project.scripts]
beatdrop = "dj_beat_drop.main_cli:main"
[project.urls]
Homepage = "https://github.com/epicserve/dj-beat-drop"
Source = "https://github.com/epicserve/dj-beat-drop"
Documentation = "https://github.com/epicserve/dj-beat-drop"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"I", # isort
"D", # pydocstyle
"S", # bandit
]
ignore = ["D100", "D101", "D102", "D103", "D104", "D106", "D203", "D212"]
[tool.ruff.lint.isort]
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder", ]
[tool.ruff.lint.per-file-ignores]
"**/{tests}/*" = ["S101"]
[tool.coverage.run]
source = ["src/"]