-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
58 lines (48 loc) · 1.46 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 = "robonomics-interface"
version = "2.0.0"
description = "This is a simple wrapper over polkascan/py-substrate-interface used to facilitate writing code for applications using Robonomics Polkadot Parachain."
authors = ["Pavel Tarasov <[email protected]>"]
license = "Apache-2.0"
homepage = "https://github.com/airalab/robonomics-interface"
repository = "https://github.com/airalab/robonomics-interface"
documentation = "https://airalab.github.io/robonomics-interface/"
readme = "README.md"
keywords = [
"python3",
"wrapper",
"blockchain",
"substrate",
"robonomics",
"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 = "robonomicsinterface" },
]
include = [
"LICENSE",
]
exclude = [
".gitignore",
]
[tool.poetry.scripts]
robonomics_interface = 'robonomicsinterface.robonomics_interface_io:cli'
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/airalab/robonomics-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"