-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (31 loc) · 1.03 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
[tool.poetry]
name = "pycctl"
version = "0.1.0"
authors = ["Mark A. Greenslade <[email protected]>"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
description = "Python cctl helper utility."
keywords = ["Casper Network", "Blockchain", "Python"]
license = "Apache-2.0"
maintainers = ["Mark A. Greenslade <[email protected]>"]
homepage = "https://github.com/casper-network/cctl-py"
readme = "README.md"
repository = "https://github.com/casper-network/cctl-py"
[tool.poetry.dependencies]
python = "^3.12"
pycspr = "^1.2.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.0.0"
pytest = "^8.0.0"
pytest-asyncio = "^0.23.5.post1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"