-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 919 Bytes
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 919 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
36
37
38
39
40
41
42
43
44
45
46
47
[project]
name = "python-library"
version = "2.0.0"
description = "Provide base template for python library"
readme = "README.md"
license = "MIT"
requires-python = ">=3.12,<3.14"
authors = [
{ name = "JaeyoungHeo", email = "jay.jaeyoung@gmail.com" },
]
maintainers = [
{ name = "JaeyoungHeo", email = "jay.jaeyoung@gmail.com" },
]
[project.urls]
Repository = "https://github.com/8percent/python-library"
[dependency-groups]
dev = [
"pytest>=8.3",
"pytest-cov>=6.1",
"tox>=4.23",
"tox-uv>=1.16",
"ruff>=0.9",
"pre-commit>=4.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/python_library"]
# Lint Configurations
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[tool.pytest.ini_options]
addopts = "-p no:cacheprovider"
testpaths = [
"tests",
]