-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 942 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
[tool.poetry]
name = "iagon-py"
version = "0.1.0"
description = "A Python client for Iagon's decentralized cloud storage platform."
authors = ["Elder Millenial <eldermillenial@protonmail.com>"]
repository = "https://github.com/theeldermillenial/iagon-py"
readme = "README.md"
packages = [{ include = "iagon", from = "src" }]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.31.0"
pydantic = "^2.3.0"
python-dotenv = "^1.0.0"
fsspec = "^2023.9.0"
pycardano = "^0.10.0"
[tool.poetry.plugins."fsspec.specs"]
"iagon" = "iagon.IagonFS"
[tool.poetry.group.dev.dependencies]
nox = "^2023.4.22"
nox-poetry = "^1.0.3"
black = "^23.9.1"
pytest = "^7.4.2"
pytest-asyncio = "^0.21.1"
pytest-order = "^1.1.0"
mypy = "^1.6.0"
flake8 = "^6.1.0"
ruff = "^0.0.292"
bump2version = "^1.0.1"
pre-commit = "^3.4.0"
isort = "^5.12.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"