-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 1.07 KB
/
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
43
44
[tool.poetry]
name = "btrfs-recon"
version = "0.1.0"
description = ""
authors = ["Zach Kanzler <they4kman@gmail.com>"]
[tool.poetry.scripts]
btrfs-recon = "btrfs_recon.cli:cli"
[tool.poetry.dependencies]
python = "^3.10"
aiomultiprocess = "^0.9.0"
alembic = "^1.7.5"
anyio = "^3.5.0"
asyncclick = "^8.0.3.1"
construct = "^2.10.67"
crc32c = "^2.2.post0"
greenlet = "!=0.4.17"
inflection = "^0.5.1"
intervaltree = "^3.1.0"
marshmallow-sqlalchemy = "^0.27.0"
psycopg = {extras = ["binary"], version = "^3.0.7"}
pydantic = "^1.9.1"
python-dateutil = "^2.8.2"
sqlalchemy = {url = "https://github.com/sqlalchemy/sqlalchemy/tarball/df056af49c51dcbcd70eb13ead5c3d8588c08235"}
sqlalchemy-repr = "^0.0.2"
SQLAlchemy-Utils = "^0.38.2"
sqlalchemy2-stubs = "^0.0.2-alpha.19"
tui-progress = "^0.1.1"
[tool.poetry.dev-dependencies]
construct-typing = "^0.5.2"
mypy = "^0.940"
nest-asyncio = "^1.5.4"
pytest = "^6.2.5"
pytest-assert-utils = "^0.3.0"
pytest-icdiff = "^0.5"
pytest-lambda = "^1.2.5"
sqlparse = "^0.4.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"