-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (40 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
42 lines (40 loc) · 1.23 KB
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
[tool.poetry]
authors = ["Alexander Walther <alexander.walther.engineering@gmail.com>"]
classifiers = [
'Development Status :: 1 - Planning',
'Environment :: Console',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Operating System :: POSIX :: Linux',
'Topic :: Software Development :: User Interfaces',
'Topic :: System :: Distributed Computing',
'Topic :: System :: Networking',
'Topic :: System :: Networking :: Monitoring',
'Topic :: Utilities',
]
description = ""
documentation = ""
homepage = "https://github.com/Walther-s-Engineering/ton-node-control"
keywords = ["The Open Network", "TON", "blockhain", "tools"]
license = "Apache-2.0"
name = "ton-node-control"
packages = [
{ include = "ton_node_control" },
]
readme = "README.md"
repository = "https://github.com/Walther-s-Engineering/ton-node-control.git"
version = "0.0.1.1"
[tool.poetry.dependencies]
python = "^3.8"
click = "8.1.3"
toml = "0.10.2"
pytest = "7.2.0"
PyYAML = "6.0"
mypy = "0.982"
simple-term-menu = "1.5.2"
pydantic = "1.10.2"
httpx = "0.23.3"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0", "setuptools>=65.3.0"]