-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.35 KB
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
[project]
name = "beman-submodule"
version = "0.1.0"
description = "A pseudo-submodule tool for vendoring Git repositories in Beman projects"
readme = "README.md"
requires-python = ">=3.12"
authors = [{ name = "The Beman Project", email = "eddiejnolan@gmail.com" }]
dependencies = []
keywords = [
"beman",
"bemanproject",
"git",
"submodule",
"vendoring",
"cli tool",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Topic :: Software Development :: Version Control :: Git",
]
[project.urls]
Homepage = "https://github.com/bemanproject/beman-submodule"
Repository = "https://github.com/bemanproject/beman-submodule"
Issues = "https://github.com/bemanproject/beman-submodule/issues"
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[dependency-groups]
dev = ["pytest>=8.4.0", "ruff>=0.11.13"]
[project.scripts]
beman-submodule = "beman_submodule.cli:main"
[tool.pytest.ini_options]
addopts = "-v"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]