-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 886 Bytes
/
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
[build-system]
build-backend = 'mesonpy'
requires = [
'meson-python',
'cython',
'patchelf>=0.14.5.0',
]
[project]
name = 'obsolete-cryptography'
version = '0.2.1'
description = 'Toolbox for exploring various obsolete ciphers and hash algorithms. Based on mcrypt and mhash.'
readme = 'README.md'
license = { file = 'LICENSE.md' }
keyword = ['cryptography', 'mcrypt', 'mhash', 'CTF']
authors = [
{ name = 'dogtopus' },
]
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: C',
'Programming Language :: Cython',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules',
]
requires-python = '>=3.8'
#dependencies = []
#[project.optional-dependencies]
#test = []
[project.urls]
repository = 'https://github.com/dogtopus/obsolete-cryptography'
[tool.meson-python.args]
install = ['--skip-subprojects']