-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 897 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 897 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 = "virtual-disk"
version = "1.0.0"
description = "This project is a user-level virtual filesystem implemented from scratch in Python. It simulates a standard UNIX-like filesystem structure, including inodes, data blocks, and bitmaps for allocation management. The filesystem can be backed by different storage mechanisms (in-memory, a single file, or an encrypted file) and can be mounted and accessed over the network via a built-in WebDAV server."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"cheroot>=11.1.1",
"wsgidav>=4.3.3",
]
[project.optional-dependencies]
crypto = [
"cryptography>=46.0.3",
]
[dependency-groups]
dev = [
"fastapi>=0.121.0",
"mypy>=1.18.2",
"pytest>=8.4.2",
"uvicorn>=0.38.0",
]
[tool.mypy]
mypy_path = "stubs"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]