-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
36 lines (33 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
[tool.poetry]
name = "pqcrypto"
version = "0.1.3"
description = "Post-quantum cryptography for Python."
authors = ["Phil Demetriou <inbox@philonas.net>"]
readme = "README.md"
license = "BSD-3-Clause"
packages = [{ include = "pqcrypto" }]
build = "extend.py"
include = ["algorithms.py", "compile.py", "extend.py", "sources/**/*", "LICENSE"]
repository = "https://github.com/kpdemetriou/pqcrypto"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: BSD License",
"Programming Language :: C",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.7"
cffi = "^1.14.2"
[tool.poetry.dev-dependencies]
pytest = "^6.0.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"