forked from semiotic-ai/autoagora-processor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 953 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
41
42
43
[tool.poetry]
name = "autoagora-processor"
version = "0.2.0"
authors = [
"Alexis Asseman <alexis@semiotic.ai>"
]
description = ""
license = ""
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License"
]
[tool.poetry.scripts]
autoagora-processor = "autoagora_processor.main:main"
[tool.poetry.dependencies]
python = "^3.8"
gql = {extras = ["requests"], version = "^3.1.0"}
pika = "^1.2.0"
psycopg2-binary = "^2.9.3"
ConfigArgParse = "^1.5.3"
prometheus-client = "^0.14.1"
thegraph-gql-utils = "^1.2.0"
[tool.poetry.group.dev.dependencies]
black = "^22.1.0"
isort = "^5.10.1"
pyright = "^1.1.278"
[build-system]
requires = ["poetry_core>=1.1.0",]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
upload_to_repository = false
version_source = "tag_only"
build_command = false
upload_to_release = false
[tool.isort]
profile = "black"