-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
93 lines (83 loc) · 2.49 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "wacryptolib"
description = "Witness Angel Cryptolib"
version = "0.12"
license = "GPL-2.0-or-later"
readme = "Readme.rst"
authors = ["Pascal Chambon", "Manon Michelet", "Akram Bourichi", "Francinette Atchade"]
homepage = "https://witnessangel.com/"
repository = "https://github.com/WitnessAngel/witness-angel-cryptolib"
documentation = "https://witness-angel-cryptolib.readthedocs.io/"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
]
include = []
exclude = []
[tool.poetry.scripts]
flightbox = 'wacryptolib.cli:main'
[tool.poetry.dependencies]
python = ">=3.8, <4.0"
# Cryptography & utilities
pycryptodome = "^3.9.9"
schema = "^0.7.2"
jsonschema = "^4.1.2"
click = "^8.0"
pymongo = "^4.0"
jsonrpc-requests = "^0.4.0"
decorator = "^5.1"
multitimer = "^0.3"
uuid0 = "^0.2.7"
pytz = ">=2021.3"
psutil = { version = "^5.8.0" } # Use on Win32 too for get_memory_rss_bytes()()
wmi = { version = "^1.5.1 ", platform = 'win32' }
pywin32 = { version = ">=300", platform = 'win32' }
pyudev = { version = "^0.22.0 ", platform = 'linux' }
prettytable = "^3.6.0"
click-log = "^0.4.0"
[tool.poetry.group.dev.dependencies]
# Test runners and plugins
pytest = ">=7.0.1"
pytest-cov = ">=4.0"
pytest-env = ">=1.0.1"
pytest_mock = ">=3.7.0"
pytest-randomly = ">=3.11"
pytest-deadfixtures = ">=2.2.1"
pytest-timeout = ">=2.1.0"
pytest-xdist = ">=3.0.0"
responses = ">=0.18.0"
freezegun = ">=1.1.0"
typeguard = ">=2.13.0"
# Linters and formatters
black = { version = ">=22.1.0" }
darglint = ">=1.8.1"
pylint = ">=2.6"
mypy = ">=0.931"
xenon = ">=0.9.0"
safety = ">=1.10"
doc8 = ">=0.10.1"
# Documentation
sphinx = ">=4.4.0"
sphinx-autodoc-typehints = ">=1.17.0"
sphinx_rtd_theme = ">=1.0.0"
sphinx-click = "^4.4.0"
sphinxcontrib-programoutput = "^0.17"
toml = ">=0.10.2"
# Install these with pip for manual benchmarks
#memory-profiler = "^0.58.0"
#matplotlib = "^3.4.3"
#pytest-profiling = "^1.7.0"