-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
42 lines (35 loc) · 876 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
38
39
40
41
42
[project]
name = "aiopath"
version = "0.8.0"
description = "📁 Async pathlib for Python"
authors = [
{ name = "Alex DeLorenzo <[email protected]>", email = "[email protected]" }
]
dependencies = [
"aiofile>=3.8.8, <4",
"anyio>=4.0.0, <5",
"typing-extensions>=3.10.0.0 ; python_version < '3.10'",
]
readme = "README.md"
requires-python = ">=3.12"
license = { text = "LGPL-3.0" }
[tool.rye]
managed = true
dev-dependencies = [
"aiofile>=3.8.8",
"anyio>=4.0.0",
"aiofiles>=23.2.1",
"pytest>=7.4.2",
"pytest-asyncio>=0.21.1",
'typing-extensions>=3.10.0.0; python_version < "3.10"'
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
root = "src"
[tool.hatch.build.targets.wheel]
packages = ["src/aiopath"]
[tool.hatch.build]
include = ["src/aiopath/**/*"]