-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) Β· 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
30 lines (27 loc) Β· 1.06 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
CaesarCipher = ["py.typed"]
[tool.setuptools.packages.find]
where = ["."]
[project]
name = "caesarcipher-extended"
version = "2.9.1"
description = "Implementation of the Caesar Cipher encryption algorithm in Python. Unlike the classic, it also shifts numbers, symbols & even emojis! Focused on simplicity and Efficiency."
readme = "README.md"
license = "GPL-3.0-only"
authors = [
{name = "Virati Akiranandhan Reddy", email = "contact.viratiakiranandhanreddy+pypi@gmail.com"}
]
requires-python = ">=3.11"
keywords = ["Caesar Cipher", "encryption", "decryption", "cryptography", "Python", "ViratiAkiraNandhanReddy", "VIRATI AKIRANANDHAN REDDY"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 7 - Inactive",
"Intended Audience :: Developers",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = []