-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 825 Bytes
/
pyproject.toml
File metadata and controls
35 lines (33 loc) · 825 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
34
35
[project]
name = "issue-auth-tool"
version = "0.2.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"google-api-python-client>=2.182.0",
"jsonschema>=4.26.0",
"openai>=1.108.1",
"pygithub>=2.8.1",
"referencing>=0.37.0",
"socksio>=1.0.0",
"uniinfo-editor @ git+https://github.com/CollegesChat/uniinfo-editor",
]
[project.scripts]
issue_auth_tool = "issue_auth_tool.issues_auth_tool:run"
[build-system]
requires = ["setuptools>=61.0"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.ty.environment]
python = "./.venv"
root = ['src']
[dependency-groups]
dev = [
"objprint>=0.3.0",
"pytest>=9",
]
[tool.pytest.ini_options]
markers = [
"manual: tests that should only be run manually (require GITHUB_TOKEN and LLM API)"
]