-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
61 lines (56 loc) · 1.28 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
59
60
61
[tool.poetry]
authors = ["xmonader <[email protected]>"]
description = "SDK for threefold grid"
license = "Apache-2.0"
name = "js-sdk"
packages = [{include = "jumpscale"}]
version = "12.0.0"
[tool.poetry.dependencies]
PyGithub = "^1.43"
base58 = "^2.0.0"
beaker = "^1.11.0"
certbot-nginx = "^1.31.0"
certifi = "^2019.6"
crontab = "^0.22.9"
cryptocompare = "^0.6.4"
cryptography = "3.3.2"
dnspython = "^1.16"
gevent = "^21.12.0"
greenlet = "^1.1.3"
importlib-metadata = "^4.0.1"
js-ng = "11.0b17"
minio = "^4.0"
namecom = "^0.5.0"
netaddr = "^0.7.19"
protobuf = "^3.12.2"
pycountry = "^19.8"
pypng = "^0.0.20"
pyqrcode = "^1.2.1"
python = ">=3.7,<4.0"
python-digitalocean = "^1.15.0"
python-taiga = "^1.0.0"
requests_unixsocket = "^0.2.0"
sendgrid = "^6.0"
stellar-sdk = "^8.1.0"
[tool.poetry.dev-dependencies]
black = "^22.10.0"
codecov = "^2.0"
flake8 = "^3.7"
hypothesis = "^4.28"
ipdb = "^0.12.1"
ipython = "^7.6"
objgraph = "^3.4.1"
parameterized = "^0.7.0"
pytest = "^7.1.3"
pytest-cov = "^2.7"
[tool.poetry.scripts]
threebot = "jumpscale.entry_points.threebot:cli"
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]
[tool.pytest.ini_options]
markers = [
"integration: marks tests as integration (deselect with '-m \"not integration\"')",
"unittests",
"extend",
]