-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
184 lines (167 loc) · 4 KB
/
Copy pathsetup.cfg
File metadata and controls
184 lines (167 loc) · 4 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
# =============================================================================
# Eidolon - Setup Configuration
# =============================================================================
[metadata]
name = poly-spinor-nexus-7d
version = attr: src.__version__
description = Secure vault system with post-quantum cryptography and blockchain monitoring
long_description = file: README.md
long_description_content_type = text/markdown
author = Logos Project
author_email = contact@polyspinor.io
license = Proprietary
license_files = LICENSE
url = https://github.com/Oykdo/Eidolon
project_urls =
Documentation = https://github.com/Oykdo/Eidolon#readme
Source = https://github.com/Oykdo/Eidolon
Tracker = https://github.com/Oykdo/Eidolon/issues
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Environment :: X11 Applications
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
keywords =
vault
cryptocurrency
nft
blockchain
security
post-quantum
cryptography
monitoring
escrow
[options]
packages = find:
python_requires = >=3.9
install_requires =
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
include_package_data = True
zip_safe = False
[options.packages.find]
include =
src*
config*
exclude =
src._dormant*
tests*
docs*
contracts*
rust*
backups*
data*
deployments*
[options.extras_require]
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
bandit>=1.7.0
blender =
bpy>=3.6.0
full =
aiohttp>=3.8.0
prometheus-client>=0.17.0
redis>=4.6.0
docs =
sphinx>=7.0.0
sphinx-rtd-theme>=1.3.0
[options.package_data]
config = *.json, *.yaml
# =============================================================================
# Tool Configurations
# =============================================================================
[flake8]
max-line-length = 100
extend-ignore = E203, E501, W503
exclude =
.git,
__pycache__,
build,
dist,
.eggs,
*.egg-info,
.venv,
venv,
.tox,
.mypy_cache
per-file-ignores =
__init__.py: F401, F403
tests/*: S101
[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
[mypy]
python_version = 3.9
warn_return_any = True
warn_unused_configs = True
ignore_missing_imports = True
exclude = tests/|build/|dist/
[tool:pytest]
minversion = 7.0
addopts = -ra -q --ignore=tests/_dormant --cov=src
testpaths = tests
python_files = test_*.py *_test.py
python_classes = Test*
python_functions = test_*
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
[coverage:run]
source = src
omit = */tests/*,*/__pycache__/*
branch = True
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
raise NotImplementedError
if __name__ == .__main__.:
if TYPE_CHECKING:
show_missing = True
fail_under = 70
[coverage:html]
directory = htmlcov
[bandit]
exclude_dirs = tests,build,dist
skips = B101,B311
[pylint.messages_control]
disable =
C0114, # missing-module-docstring
C0115, # missing-class-docstring
C0116, # missing-function-docstring
R0903, # too-few-public-methods
R0913, # too-many-arguments
W0511, # fixme
[pylint.format]
max-line-length = 100
[pylint.basic]
good-names = i,j,k,e,f,id,db