-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 837 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 837 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
[project]
name = "hexlet-pairs"
version = "0.1.2"
description = "A SICP'ish functional pairs implemented in Python"
authors = [{name = "Hexlet Team <info@hexlet.io>"}]
license = "ISC"
readme = "README.md"
homepage = "https://github.com/hexlet-components/python-pairs"
repository = "https://github.com/hexlet-components/python-pairs"
classifiers = [
"Intended Audience :: Education",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python :: 3.6",
"Topic :: Education",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
requires-python = ">=3.13"
dependencies = []
[dependency-groups]
dev = [
"pytest>=8.3.5",
"ruff>=0.9.9",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/hexlet"]