-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (41 loc) · 1.01 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling>=1.24.2"]
build-backend = "hatchling.build"
[project]
name = "atomik"
authors = [
{ name="halbow" },
]
description = "Atomik provides you a python-friendly way to manage writing new file and folders in an atomic way."
requires-python = ">=3.8"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Typing :: Typed",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/halbow/atomik"
"Bug Tracker" = "https://github.com/halbow/atomik/issues"
[project.optional-dependencies]
dev = [
"mypy",
"pytest",
"pytest-cov",
"ruff",
]
[tool.hatch.version]
path = "src/atomik/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["src/atomik"]
[tool.ruff]
line-length = 120
target-version = 'py38'
[tool.ruff.lint.isort]
known-local-folder=["atomik", "tests"]
[tool.mypy]
python_version = "3.8"
strict = true
show_error_codes = true