-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
54 lines (48 loc) · 1.25 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
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "minswap-py"
version = "0.3.3"
description = ""
authors = ["eldermillenial <[email protected]>"]
readme = "README.md"
packages = [{ include = "minswap", from = "src" }]
license = "MIT"
repository = "https://github.com/theeldermillenial/minswap-py"
[tool.poetry.urls]
"Issues" = "https://github.com/theeldermillenial/minswap-py/issues"
[tool.poetry.dependencies]
python = "^3.8.1"
blockfrost-python = "0.5.3"
pycardano = "0.9.0"
pydantic = "1.10.4"
python-dotenv = "0.21.1"
numba = "^0.56.4"
tqdm = "^4.65.0"
vaex-core = "^4.17.1"
[tool.poetry.group.dev.dependencies]
nox = "2022.11.21"
poetry = "^1.3.2"
nox-poetry = "1.0.2"
pytest = "7.2.1"
black = "22.12.0"
datamodel-code-generator = { extras = ["http"], version = "^0.16.1" }
bump2version = "^1.0.1"
mypy = "^0.991"
flake8 = "^6.0.0"
flake8-docstrings = "^1.7.0"
mkdocs = "^1.4.2"
mkdocs-material = "^9.0.6"
mkdocstrings = "^0.20.0"
mkdocs-gen-files = "^0.4.0"
mkdocstrings-python = "^0.8.3"
mkdocs-literate-nav = "^0.6.0"
semver = "^2.13.0"
packaging = "^23.0"
pre-commit = "^3.0.1"
ipykernel = "^6.25.1"
[tool.isort]
profile = "black"
[tool.mypy]
exclude = ['^blockfrost\.py$', 'tests/', 'examples/*']
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"