-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (56 loc) · 1.67 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
[tool.poetry]
name = "open-autonomy-client"
version = "0.1.0"
description = "Autonomous Service Client SDK"
authors = [
"Yuri (solarw) Turchenkov <[email protected]>",
"Adamantios Zaras <[email protected]>"
]
maintainers = ["David Minarsch <[email protected]>"]
readme = "README.md"
repository = "https://github.com/valory-xyz/open-autonomy-client"
keywords = ["client", "sdk", "autonomy", "autonomous", "autonolas", "service", "multi", "agent"]
classifiers = [
"Environment :: Console",
"Environment :: Web Environment",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: Unix",
"Programming Language :: Python :: 3.10",
"Topic :: Communications",
"Topic :: Internet",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: System",
]
packages = [{include = "open_autonomy_client"}]
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "3.7.4.post0"
eth-account = "^0.8.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
pytest-asyncio = "^0.20.3"
tomte = {extras = ["black", "isort", "tests"], version = "^0.2.2"}
tox = "3.28.0"
autopep8 = "^2.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
# for black compatibility
profile = "black"
[tool.pylint."MESSAGES CONTROL"]
max-line-length = 120
[[tool.mypy.overrides]]
module = [
"aiohttp.*",
"pytest.*",
"eth_account.*",
"eth_keys.*"
]
ignore_missing_imports = true