-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
33 lines (30 loc) · 1.38 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
[tool.setuptools]
packages = ["cryptosystems"]
[build-system]
requires = ["wheel", "setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cryptosystems"
version = "1.0.0"
authors = [
{ name="Ishan Surana", email="ishansurana1234@gmail.com" },
]
maintainers = [
{ name="Ishan Surana", email="ishansurana1234@gmail.com" },
]
description = "A module for cryptography built from scratch, offering a robust suite of classes and functions for symmetric and asymmetric encryption, hashing algorithms, key exchange protocols as well as mathematical utility functions."
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Microsoft :: Windows",
]
dependencies = []
requires-python = ">=3.10"
keywords = [ "cryptography", "encryption", "decryption", "hashing", "symmetric encryption", "asymmetric encryption", "cipher", "hash functions", "Python cryptography", "lightweight cryptography", "dependency-free"]
[project.urls]
Homepage = "https://cryptosystems.readthedocs.io/en/latest/"
Documentation = "https://cryptosystems.readthedocs.io/en/latest/"
Repository = "https://github.com/ishan-surana/cryptosystems"
Changelog = "https://github.com/ishan-surana/cryptosystems/releases"
Issues = "https://github.com/ishan-surana/cryptosystems/issues"