-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (60 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (60 loc) · 1.61 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["uv-build>=0.8.18,<0.9.0"]
build-backend = "uv_build"
[project]
name = "datakit-github"
version = "0.3.3"
description = "Light-weight GitHub integration for datakit workflows."
authors = [
{name = "Larry Fenn", email = "lfenn@ap.org"},
]
license = {text = "ISC"}
keywords = ["datakit"]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
dependencies = [
"cliff",
"datakit-core>=0.5.0",
"PyGithub",
]
[project.urls]
Homepage = "https://github.com/associatedpress/datakit-github"
Source = "https://github.com/associatedpress/datakit-github"
Tracker = "https://github.com/associatedpress/datakit-github/issues"
[project.entry-points."datakit.plugins"]
"github integrate" = "datakit_github.commands:Integrate"
[dependency-groups]
dev = [
"bumpversion",
"coverage",
"ruff==0.16.0",
"pytest",
"pytest-vcr",
"Sphinx",
"tox",
"tox-uv",
"watchdog",
]
[tool.uv.build-backend]
module-root = ""
[tool.tox]
env_list = ["py310", "py311", "py312", "py313"]
[tool.tox.env_run_base]
dependency_groups = ["dev"]
commands = [["pytest", "--vcr-record=none", "{posargs}"]]
[tool.ruff]
line-length = 130
exclude = ["docs", "datakit_github/__init__.py"]
[tool.ruff.lint.per-file-ignores]
"datakit_github/commands/__init__.py" = ["F401"]
[tool.pytest.ini_options]
testpaths = ["tests/"]
log_level = "INFO"
addopts = "--vcr-record=none"