-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
37 lines (31 loc) · 1.07 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
[build-system]
requires = ["setuptools>=64.0", "cffi>=1.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyargon2"
version = "1.1.0"
authors = [
{ name="James Webb", email="[email protected]" },
]
description = "Simultaneously the simplest and most powerful Argon2 implemenation in Python"
readme = "README.md"
requires-python = ">=3"
license = {text = "Apache2"}
keywords = ["password", "hash", "hashing", "security", "argon2"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries',
]
dependencies = ["cffi>=1.0.0"]
[project.urls]
"Homepage" = "https://github.com/ultrahorizon/pyargon2"
"Bug Tracker" = "https://github.com/ultrahorizon/pyargon2/issues"