forked from pycrypto/pycrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (25 loc) · 935 Bytes
/
Copy pathpyproject.toml
File metadata and controls
27 lines (25 loc) · 935 Bytes
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
[tool.poetry]
name = "pycrypto"
version = "2.6.1"
description = "Cryptographic modules for Python."
authors = ["Darsey Litzenberger <dlitz@dlitz.net>"]
license = "Public Domain"
readme = "README"
repository = "https://github.com/elsa/pycrypto"
packages = [{ include = "Crypto", from = "lib" }]
include = [
{ path = "src/**/*", format = "sdist" },
{ path = "configure", format = "sdist" },
{ path = "config.h.in", format = "sdist" },
{ path = "buildenv.in", format = "sdist" },
{ path = "Makefile.pre.in", format = "sdist" },
{ path = "MANIFEST.in", format = "sdist" },
{ path = "setup.py", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.8"
# Native extensions still build via legacy setup.py (autoconf / libgmp).
# setuptools<58 keeps pycrypto's build_py_2to3 path available for Python 3 wheels.
[build-system]
requires = ["setuptools<58", "wheel"]
build-backend = "setuptools.build_meta"