-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (24 loc) · 772 Bytes
/
pyproject.toml
File metadata and controls
29 lines (24 loc) · 772 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
28
29
[tool.poetry]
name = "rencode"
version = "1.0.8"
description = "rencode is an object serialization library similar to bencode from the Bittorrent project."
authors = ["Andrew Resch <andrewresch@gmail.com>"]
license = "GPLv3"
include = [{path = "rencode/*.so", format = "wheel"}, {path = "rencode/*.c", format = "sdist"}]
packages = [{include = "rencode"}]
exclude = ['rencode/*.c']
[tool.poetry.build]
script = "build.py"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
black = "^21.9b0"
cython = "^3.1.0"
pytest = "^8.3.5"
[tool.poetry.group.build.dependencies]
setuptools = "^80.9.0"
cython = "^3.1.1"
poetry-core = "^2.1.3"
[build-system]
requires = ["poetry-core", "setuptools", "cython"]
build-backend = "poetry.core.masonry.api"