-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
129 lines (117 loc) · 3.27 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
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
[build-system]
requires = ['setuptools', 'setuptools-scm']
build-backend = 'setuptools.build_meta'
[project]
name = 'CryptoLyzer'
version = '1.0.0'
description = 'A comprehensive cryptographic settings analyzer'
authors = [
{name = 'Szilárd Pfeiffer', email = '[email protected]'}
]
maintainers = [
{name = 'Szilárd Pfeiffer', email = '[email protected]'}
]
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Framework :: tox',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Internet :: File Transfer Protocol (FTP)',
'Topic :: Internet :: XMPP',
'Topic :: Security',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing :: Traffic Generation',
'Topic :: Software Development :: Testing',
]
keywords = [
'ssl',
'tls',
'gost',
'ja3',
'hassh',
'https',
'pop3',
'smtp',
'imap',
'ftp',
'rdp',
'xmpp',
'jabber',
'ldap',
'sieve',
'ssh',
'hsts',
'dnssec',
]
readme = {file = 'README.rst', content-type = 'text/x-rst'}
license = {text = 'MPL-2.0'}
dependencies = [
'oscrypto @ git+https://github.com/wbond/oscrypto.git@d5f3437',
'attrs',
'bs4',
'certvalidator',
'colorama',
'cryptoparser==1.0.0',
'pyfakefs',
'python-dateutil',
'requests',
'dnspython',
'urllib3',
]
[project.scripts]
cryptolyze = 'cryptolyzer.__main__:main'
[project.urls]
Homepage = 'https://gitlab.com/coroner/cryptolyzer'
Changelog = 'https://cryptolyzer.readthedocs.io/en/latest/changelog'
Documentation = 'https://cryptolyzer.readthedocs.io/en/latest/'
Issues = 'https://gitlab.com/coroner/cryptolyzer/-/issues'
Source = 'https://gitlab.com/coroner/cryptolyzer'
[tool.variables]
technical_name = 'cryptolyzer'
[tool.setuptools]
license-files = ['LICENSE.txt']
[tool.setuptools.packages.find]
exclude = ['submodules']
[tool.tox]
envlist = [
'pep8',
'pylint',
'pypy3',
'py39',
'py310',
'py311',
'py312',
'py313',
'pythonrc',
]
[tool.tox.env_run_base]
deps = ['coverage', '.[tests]']
commands = [
['coverage', 'erase'],
['coverage', 'run', '-m', 'unittest', 'discover', '-v'],
['coverage', 'report']
]
[tool.tox.env.pep8]
deps = ['flake8']
commands = [['flake8', 'cryptolyzer', 'docs', 'test']]
[tool.tox.env.pylint]
deps = ['pylint', '.[tests]']
commands = [['pylint', '--rcfile', '.pylintrc', 'cryptolyzer', 'docs', 'test']]