-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
38 lines (35 loc) · 873 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
34
35
36
37
38
[tool.poetry]
name = "ECPy"
version = "1.2.5"
description = "Pure Python Elliptic Curve Library"
authors = ["Cedric Mesnil <cslashm@gmail.com>"]
keywords = [
"ecdsa",
"eddsa",
"ed25519",
"ed448",
"schnorr",
"ecschnorr",
"elliptic",
"curve",
]
homepage = "https://github.com/cslashm/ECPy"
readme = "README.rst"
license = "Apache License - Version 2.0"
packages = [
{ include = "ecpy", from = "src" },
]
classifiers = [
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Topic :: Security :: Cryptography",
]
[tool.poetry.dependencies]
python = ">= 2.7"
future = { version = ">= 0.18.0", python = "~2" }
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"