-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (56 loc) · 1.59 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "test-python-uv-project-template"
version = "0.0.3"
description = "🐍 Just a template of Python project be managed by UV."
authors = [{ name = "Chisanan232", email = "chi10211201@cycu.org.tw" }]
requires-python = ">=3.12,<4.0"
readme = "README.md"
license = { file = "LICENSE" }
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/Chisanan232/Template-Python-UV-Project"
Repository = "https://github.com/Chisanan232/Template-Python-UV-Project"
[dependency-groups]
dev = [
"pytest>=8.1.1,<10",
"pytest-cov>=5.0.0,<8",
"coverage~=7.10",
"pytest-rerunfailures>=14.0,<17",
"aiohttp>=3.12.13",
"pytest-asyncio>=0.23.0,<2",
"python-dotenv>=1.0.1,<2",
]
pre-commit-ci = [
"pre-commit>=3.5.0,<5",
"pylint>=3.1.0,<5",
"mypy>=1.2.0,<3",
]
[tool.uv]
default-groups = [
"dev",
"pre-commit-ci",
]
[tool.hatch.build.targets.sdist]
include = ["src/"]
packages = ["src"]
#artifacts = ["slack_mcp/py.typed"]
[tool.hatch.build.targets.wheel]
include = ["src/"]
packages = ["src"]
#artifacts = ["slack_mcp/py.typed"]