-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 1.01 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "github-cli"
version = "0.0.1"
description = "Manage your GitHub inventory"
readme = "README.md"
requires-python = ">=3.11"
# license = "MIT"
authors = [{ name = "Darrien Rushing" }]
# We declare that deps come from elsewhere:
dynamic = ["dependencies", "optional-dependencies"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
optional-dependencies.dev = { file = ["requirements-dev.txt"] } # optional
[project.urls]
Homepage = "https://github.com/meddlin/github-inventory"
# creates the `github` shell command
[project.scripts]
github = "github_cli.main:main"
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = false # keep wheels lean unless you add data files explicitly
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests*", "docs*"] # package name patterns (not file globs)