-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 900 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (42 loc) · 900 Bytes
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
[tool.poetry]
version = "1.6.0"
name = "geonius"
description = "Geonius is a daemonic script that allows Node Operators to automate their operations on geodefi Operator Marketplace"
authors = ["0xicebear <admin@geode.fi>", "crashbandicoott <bandicoot@geode.fi>"]
readme = "README.md"
packages = [
{ include = "src" }
]
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
geodefi = "^3.2.0"
python-dotenv = "^1.0.1"
click = "^8.1.7"
[tool.poetry.group.dev.dependencies]
pylint = "==3.0.3"
ipykernel = "^6.29.4"
pytest = "^8.2.1"
black = "^24.4.2"
pyinstaller = "^6.9.0"
[tool.poetry.scripts]
geonius = "src.main:cli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''