This repository was archived by the owner on Aug 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
62 lines (54 loc) · 1.37 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "aepp-sdk"
version = "7.0.0"
description = "Python SDK to interact with the Æternity blockchain"
authors = [
"Andrea Giacobino <no.andrea@gmail.com>",
"Shubhendu Shekhar <shubhendu@apeunit.com>"
]
license = "ISC"
homepage = "https://github.com/aeternity/aepp-sdk-python"
repository = "https://github.com/aeternity/aepp-sdk-python"
readme = "README.md"
keywords = ["aeternity", "blockchain", "sdk"]
include = ["CHANGELOG.md"]
classifiers = [
'License :: OSI Approved :: ISC License (ISCL)',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
]
packages = [
{ include = "aeternity" },
]
[tool.poetry.dependencies]
python = "^3.7"
base58 = ">=1,<3"
click = "^7.0"
rlp = "^1.1"
PyNaCl = "^1.3"
requests = "^2.20"
validators = ">=0.13,<0.15"
semver = "^2.8"
Deprecated = "^1.2"
websockets = ">=7,<9"
simplejson = "^3.16.0"
mnemonic = "^0.19.0"
munch = "^2.5"
[tool.poetry.dev-dependencies]
pytest = "^5.3"
flake8 = "^3.7"
pytest-cov = "^2.7"
coverage = "^5.0"
sphinx = "^2.3"
sphinx_rtd_theme = "^0.4.3"
git-changelog = "^0.2.0"
[tool.poetry.extras]
test = ["coverage", "pytest"]
[tool.poetry.scripts]
aecli = "aeternity.__main__:run"
[tool.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "pip", path = "requirements.txt"}
[build-system]
requires = ["poetry>=1.0.1"]
build-backend = "poetry.masonry.api"