-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
76 lines (70 loc) · 1.54 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[tool.poetry]
authors = ["xmonader <xmonader@gmail.com>"]
description = "system automation, configuration management and RPC framework"
license = "MIT"
name = "js-ng"
packages = [{include = "jumpscale"}]
version = "12.0.0"
[tool.poetry.dependencies]
GitPython = "^3.0"
Jinja2 = "^3.1.2"
PyNaCl = "^1.5.0"
PyYAML = "^5.1"
Whoosh = "^2.7.4"
arrow = "^0.15.7"
better-exceptions = "^0.2.2"
bottle = "^0.12.18"
click = "^8.1.3"
colorama = "^0.4.1"
dill = "^0.3.0"
distro = "^1.4"
docker = "^4.2.0"
fabric = "^2.4"
faker = "^2.0"
gevent = "^21.1.2"
jedi = "0.17.2"
libtmux = "^0.8.2"
loguru = "^0.3.2"
msgpack = "^0.6.1"
pdoc3 = "^0.10.0"
prompt-toolkit = "<3.0.0"
psutil = "^5.7.0"
ptpython = "^2.0"
pudb = "^2019.1"
pycparser = "^2.20"
pylzma = "^0.5.0"
python = ">=3.7,<4.0"
pytoml = "^0.1.21"
redis = "^3.3"
requests = "^2.28.1"
secretconf = "^0.1.2"
terminaltables = "^3.1"
watchdog = "^2.1.9"
zipp = "^3.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]
jsctl = "jumpscale.entry_points.jsctl:cli"
jsng = "jumpscale.entry_points.jsng:run"
jsync = "jumpscale.entry_points.jsync:cli"
[tool.black]
line-length = 120
target_version = ['py37']
[tool.pytest.ini_options]
markers = [
"integration: marks tests as integration (deselect with '-m \"not integration\"')",
"unittests",
"admin",
]
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]