-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
75 lines (65 loc) · 1.55 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 = "nore"
version = "0.1.1"
description = "Download .gitignore files from the github/gitignore repo."
license = "MIT"
authors = [
{ name = "Trent Oliver", email = "[email protected]" }
]
homepage = "https://github.com/tcoliver/nore"
repository = "https://github.com/tcoliver/nore"
keywords = ["git", ".gitignore", "VCS"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities"
]
readme = "README.md"
include = [
"LICENSE"
]
dependencies = [
"pydantic~=1.8.2",
"click~=8.0.1",
]
requires-python = ">= 3.9"
[project.scripts]
"nore" = "nore.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pytest~=8.3.2",
"pyright~=1.1.375",
]
[tool.rye.scripts]
fmt = "rye fmt"
lint = "rye lint --fix"
check = "pyright"
test = "rye test"
all = { chain = ["fmt", "lint", "check", "test"] }
[tool.ruff]
target-version = "py39"
line-length = 120
[tool.ruff.lint]
select = ["ALL"]
ignore = []
[tool.ruff.lint.isort]
known-first-party = ["nore"]
[tool.pyright]
venvPath = "."
venv = ".venv"
strict = ["**/*.py"]
pythonVersion = "3.9"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/nore"]