-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
28 lines (24 loc) · 938 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
[project]
name = "hermesnet"
version = "0.2.1"
authors = [{ name = "Cutipus", email = "[email protected]" }]
maintainers = [{ name = "Cutipus", email = "[email protected]" }]
description = "A distributed file sharing application inspired by SoulSeek and Torrent written in Python."
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["network", "distributed", "file sharing"]
dependencies = ["pytest", "pytest-cov", "pytest-asyncio", "aiofiles"]
requires-python = ">= 3.12"
[project.urls]
Homepage = "https://github.com/Cutipus/HermesNet"
#Documentation = ""
Repository = "https://github.com/Cutipus/HermesNet.git"
Issues = "https://github.com/Cutipus/HermesNet/issues"
#Changelog = "https://github.com/Cutipus/HermesNet/blob/master/CHANGELOG.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.pytest.ini_options]
asyncio_mode = "auto"