-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
66 lines (60 loc) · 1.58 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
55
56
57
58
59
60
61
62
63
64
65
66
[tool.poetry]
name = "Chia Climate Token Driver"
version = "1.1.0"
description = "https://github.com/Chia-Network/climate-token-driver"
authors = [
"Harry Hsu <[email protected]>",
"Chia Network Inc <[email protected]>",
]
maintainers = ["Chia Network Inc <[email protected]>"]
repository = "https://github.com/Chia-Network/climate-token-driver"
homepage = "https://www.chia.net/"
license = "Apache-2.0"
packages = [{ include = "app" }]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
fastapi = "0.115.3"
uvicorn = "^0.18.3"
SQLAlchemy = "^1.4.41"
requests = "^2.28.1"
fastapi-utils = "^0.2.1"
SQLAlchemy-Utils = "^0.38.3"
pydantic = {version = "^1.10.2", extras = ["dotenv"]}
chia-blockchain = "2.4.4"
httpx = "^0.27.2"
typing-inspect = "^0.9.0"
types-pyyaml = "^6.0.12.20240917"
types-requests = "^2.32.0.20241016"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
# has to be disabled unfortunately due to developing chia-blockchain
# chia-dev-tools = "^1.1.1"
# chia-blockchain = { path = "./chia-blockchain", develop = true }
pytest = "^7.1.2"
commitizen = "^2.27.1"
pytest-xdist = "^3.3.1"
black = "23.7.0"
isort = "5.12.0"
flake8 = "6.1.0"
mypy = "1.11.1"
pre-commit = "3.7.1"
pyupgrade = "3.16.0"
[tool.commitizen]
name = "cz_conventional_commits"
version = "1.0.1"
tag_format = "$version"
changelog_start_rev = "1.0.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py38', 'py39', 'py310', 'py311']
include = '''
^/(
[^/]*.py
| (app|tests)/.*\.pyi?
)$
'''
exclude = ''