This repository was archived by the owner on Nov 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (87 loc) · 2.39 KB
/
pyproject.toml
File metadata and controls
96 lines (87 loc) · 2.39 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
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
94
95
96
[build-system]
requires = ["setuptools>=68.0.0,<69.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mse-cli"
authors = [
{ name = "Cosmian Tech", email = "tech@cosmian.com" },
]
description = "Command Line Interface for Microservice Encryption"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython"
]
dependencies = [
"cryptography>=42.0.5,<43.0.0",
"docker>=7.1.0,<8.0.0",
"intel-sgx-ra>=2.2.1,<3.0",
"jinja2>=3.0,<3.1",
"mse-lib-crypto>=1.4,<2.0",
"pydantic>=1.10.2,<2.0.0",
"pyjwt>=2.6.0,<2.7.0",
"requests>=2.31.0,<3.0.0",
"toml>=0.10.2,<0.11.0",
"urllib3>=1.26.13,<1.27.0"
]
dynamic = ["version"]
[project.urls]
homepage = "https://cosmian.com"
documentation = "https://docs.cosmian.com"
repository = "https://github.com/Cosmian/mse-cli"
[tool.setuptools.dynamic]
version = { attr = "mse_cli.__version__" }
[project.optional-dependencies]
dev = [
"pylint>=2.17,<3.0",
"pycodestyle>=2.10,<3.0",
"pydocstyle>=6.3,<7.0",
"mypy>=1.4,<2.0",
"black>=23.7,<24.0",
"isort>=5.12,<6.0",
"pytest>=7.4,<8.0",
"flask==2.2.0",
"numpydoc>=1.5.0,<1.6.0",
"sphinx>=5.3.0,<5.4.0",
"sphinx_rtd_theme>=1.1.1,<1.2.0",
"sphinx_mdinclude>=0.5.3,<0.6.0",
"types-requests>=2.28,<2.29",
"types-urllib3>=1.26,<1.27",
"types-toml>=0.10,<0.11",
"types-setuptools>=68.0.0,<69.0.0"
]
deploy = [
"build>=0.10.0,<0.11.0",
"wheel>=0.40.0,<0.41.0"
]
[project.scripts]
mse = "mse_cli.main:main"
[tool.pylint.MAIN]
disable = [
"C0103", # invalid-name
"R0801", # duplicate-code
"R0913", # too-many-arguments
"R0902", # too-many-instance-attributes
"R0903" # too-few-public-methods
]
extension-pkg-whitelist = "pydantic"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--strict-markers"
testpaths = ["tests"]
pythonpath = "src"
markers = [
"incremental",
"home: marks tests requiring an sgx machine (deselect with '-m \"not home\"')",
"cloud: marks tests a connection to the cloud env (deselect with '-m \"not cloud\"')"
]
[[tool.mypy.overrides]]
module = "docker.*"
ignore_missing_imports = true