-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
48 lines (41 loc) · 1.23 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
[tool.poetry]
name = "apibara"
version = "0.8.0"
description = "Apibara cliend SDK. Stream and transform on-chain data with Python."
authors = ["Francesco Ceccon <[email protected]>"]
license = "Apache-2.0"
readme = "README.rst"
homepage = "https://www.apibara.com"
repository = "https://github.com/apibara/python-sdk"
keywords = ["ethereum", "web3", "starknet"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
grpcio = ">=1.50,<2.0"
protobuf = ">=4.20,<5"
pymongo = "^4.3.3"
[tool.poetry.extras]
indexer = ["pymongo"]
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
black = "^22.12.0"
isort = "^5.11.4"
pytest-asyncio = "^0.20.3"
grpcio-tools = ">=1.50,<2.0"
testcontainers = { extras = ["mongodb"], version = "^3.7.1" }
[tool.black]
line-length = 88
target-version = ['py38', 'py39', 'py310']
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"