-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
185 lines (169 loc) · 4.32 KB
/
Copy pathpyproject.toml
File metadata and controls
185 lines (169 loc) · 4.32 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "poly-spinor-nexus-7d"
description = "Système de vault sécurisé avec cryptographie post-quantique et monitoring blockchain"
readme = "README.md"
license = {text = "Proprietary"}
requires-python = ">=3.9"
dynamic = ["version"]
authors = [
{name = "Logos Project", email = "contact@polyspinor.io"}
]
keywords = [
"vault", "cryptocurrency", "nft", "blockchain", "security",
"post-quantum", "cryptography", "monitoring", "escrow"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security :: Cryptography",
"Topic :: Office/Business :: Financial",
]
dependencies = [
"cryptography>=41.0.0",
"numpy>=1.24.0",
"web3>=6.0.0",
"eth-account>=0.10.0",
"requests>=2.31.0",
"pillow>=10.0.0",
"customtkinter>=5.2.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.1.0",
"mypy>=1.5.0",
"pre-commit>=3.4.0",
]
blender = [
"bpy>=3.6.0",
"mathutils>=3.3.0",
]
full = [
"pqcrypto>=0.1.0",
"aiohttp>=3.8.0",
"prometheus-client>=0.17.0",
"redis>=4.6.0",
"sqlalchemy>=2.0.0",
]
docs = [
"sphinx>=7.0.0",
"sphinx-rtd-theme>=1.3.0",
"myst-parser>=2.0.0",
]
[project.scripts]
eidolon = "src.ui.launcher:main"
eidolon-api = "src.api.server:run_server"
eidolon-launcher = "src.ui.launcher:main"
eidolond = "src.daemon.cli:main"
[project.gui-scripts]
eidolon-gui = "src.ui.launcher:main"
[project.urls]
Homepage = "https://github.com/Oykdo/Eidolon"
Documentation = "https://github.com/Oykdo/Eidolon#readme"
Repository = "https://github.com/Oykdo/Eidolon.git"
Issues = "https://github.com/Oykdo/Eidolon/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = [
"src",
"src.daemon",
"src.daemon.*",
"src.identity",
"src.identity.*",
"src.api",
"src.api.*",
"src.ui",
"src.ui.*",
"src.utils",
"src.utils.*",
"config",
"config.*",
]
[tool.setuptools.dynamic]
version = {attr = "src.__version__"}
[tool.setuptools.package-data]
config = ["*.json", "*.yaml", "*.yml"]
[tool.black]
line-length = 100
target-version = ['py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| __pycache__
)/
'''
[tool.isort]
profile = "black"
line_length = 100
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
skip = [".git", "__pycache__", ".venv", "build", "dist"]
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
exclude = [
"tests/",
"build/",
"dist/",
]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -q --ignore=tests/_dormant --cov=src --cov-report=term:skip-covered"
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
filterwarnings = [
"ignore::DeprecationWarning:websockets.legacy",
]
[tool.coverage.run]
source = ["src"]
omit = ["*/tests/*", "*/__pycache__/*"]
branch = true
[tool.coverage.report]
show_missing = true
# No `fail_under` yet, deliberately. setup.cfg carried `fail_under = 70` in a
# section pytest never read, so the floor was decorative: measured coverage on
# 2026-09-09 was 29%. Setting 70 here would fail every run today. Pick a floor
# from the real number and raise it, rather than inheriting an aspiration.
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]