-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 937 Bytes
/
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
[project]
name = "curripy"
version = "0.1.1"
description = "Curried / Point-free versions of the Python standard libraries functions and methods."
authors = [
{ name = "Lehmaning", email = "[email protected]" }
]
dependencies = [
"typing-extensions>=4.12.2",
]
readme = "README.md"
requires-python = ">= 3.8"
[project.urls]
# Homepage = "https://example.com"
# Documentation = "https://curripy.readthedocs.org"
Repository = "https://github.com/Lehmaning/curripy/"
Issues = "https://github.com/Lehmaning/curripy/issues"
# Changelog = "https://github.com/Lehmaning/curripy/blob/master/CHANGELOG.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"mypy>=1.10.1",
"autoflake>=2.3.1",
"pytest>=8.2.2",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/curripy"]