-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
33 lines (30 loc) · 945 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "owiener"
version = "1.0.9"
authors = [
{name = "Nao Yonashiro", email = "owan.orisano@gmail.com"}
]
description = "A Python3 implementation of the Wiener attack on RSA"
readme = "README.md"
requires-python = ">=3.5"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Security :: Cryptography",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
Repository = "https://github.com/orisano/owiener"
[tool.setuptools]
py-modules = ["owiener"]
include-package-data = true