-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 877 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 877 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
[project]
name = "hexlet-points"
version = "0.3.1"
description = "A SICP'ish Points implemented in Python using hexlet-pairs"
authors = [{name = "Hexlet Team <info@hexlet.io>"}]
license = "ISC"
readme = "README.md"
homepage = "https://github.com/hexlet-components/python-points"
repository = "https://github.com/hexlet-components/python-points"
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 = [
"hexlet-pairs>=0.1.2",
]
[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"]