-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (26 loc) · 765 Bytes
/
pyproject.toml
File metadata and controls
33 lines (26 loc) · 765 Bytes
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
[project]
name = "git-sync"
version = "0.4.3"
description = "Synchronize local git repo with remotes"
authors = [{ name = "Alice Purcell", email = "alicederyn@gmail.com" }]
requires-python = ">= 3.12"
dynamic = ["dependencies"]
[project.scripts]
git-sync = "git_sync:main"
[tool.mypy]
python_version = "3.12"
strict = true
[tool.pytest.ini_options]
addopts = "--doctest-modules"
asyncio_mode = "auto"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = ["ANN", "B", "C4", "E", "F", "I", "PGH", "PL", "PYI", "RUF", "SIM", "UP", "W"]
ignore = ["PLR"]
isort.split-on-trailing-comma = false
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[build-system]
requires = ["setuptools >= 75"]
build-backend = "setuptools.build_meta"