-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (48 loc) · 1.34 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
[tool.poetry]
name = "vara-interface"
version = "1.0.0"
description = "Vara wrapper over https://github.com/polkascan/py-substrate-interface created to facilitate programming with Gear"
authors = ["Vadim Smirnov <[email protected]>"]
license = "Apache-2.0"
homepage = "https://github.com/gear-tech/vara-interface"
repository = "https://github.com/gear-tech/vara-interface"
readme = "README.md"
keywords = [
"python3",
"wrapper",
"blockchain",
"substrate",
"gear",
"vara",
"pypi-package"
]
classifiers = [
"Operating System :: Unix",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
]
packages = [
{ include = "varainterface" },
]
include = [
"LICENSE",
]
exclude = [
".gitignore",
]
[tool.poetry.scripts]
robonomics_interface = 'robonomicsinterface.robonomics_interface_io:cli'
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/gear-tech/vara-interface/issues"
[tool.poetry.dependencies]
python = ">=3.8, <4.0"
substrate-interface = ">=1.4.0, <2.0"
click = "^8.0.4"
[tool.poetry.dev-dependencies]
Sphinx = "^4.4.0"
black = "^22.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"