-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (57 loc) · 1.58 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
[build-system]
requires = ["setuptools>=68.0.0,<76.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cenclave-lib-sgx"
authors = [
{ name = "Cosmian Tech", email = "[email protected]" },
]
description = "Library to bootstrap WSGI/ASGI application for Gramine"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
classifiers = [
"Development Status :: 6 - Mature",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython"
]
dependencies = [
"cryptography>=43.0.3,<44.0.0",
"intel-sgx-ra>=2.3.1,<2.4.0",
"hypercorn[uvloop]>=0.17.3,<0.18.0",
"h2>=4.1.0,<4.2.0",
"cenclave-lib-crypto>=1.0.0,<1.1.0"
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = { attr = "cenclave_lib_sgx.__version__" }
[project.optional-dependencies]
dev = [
"black>=24.10.0,<25.0.0",
"isort>=5.13.2,<6.0.0",
"pylint>=3.3.1,<4.0.0",
"pycodestyle>=2.12.1,<3.0.0",
"pydocstyle>=6.3.0,<7.0.0",
"mypy>=1.13.0,<2.0.0",
"pytest>=8.3.3,<9.0.0",
"build>=1.2.2,<1.3.0",
"wheel>=0.45.0,<0.50.0"
]
[project.scripts]
cenclave-bootstrap = "cenclave_lib_sgx.cli:run"
[tool.pylint.MAIN]
disable = [
"C0103", # invalid-name
"R0913", # too-many-arguments
"R0902", # too-many-instance-attributes
"R0914", # too-many-locals
"R0903", # too-few-public-methods
"R0917" # too-many-positional-arguments
]
[tool.isort]
profile = "black"
[tool.pytest]
testpaths = "tests"
pythonpath = "src"