-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.19 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
37
38
39
40
[tool.poetry]
name = "python-aiotorrent"
# version is a calculated guess. Subsequent updates will follow the semantic versioning convention.
version = "0.8.3"
description = "An ultra-lightweight torrent library written in pure Python."
authors = ["Shakir <[email protected]>"]
readme = "README.md"
repository = "https://github.com/Mys7erio/aiotorrent"
keywords = ["python", "python3", "bittorrent", "bittorrent-client", "downloading", "streaming"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Topic :: Communications :: File Sharing",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Multimedia",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "aiotorrent" }
]
[tool.poetry.dependencies]
python = "^3.11"
bitstring = "^4.0.1"
starlette = "^0.32.0.post1"
uvicorn = "^0.24.0.post1"
fast-bencode = "^1.1.4"
[tool.poetry.extras]
stream-support = ["starlette", "uvicorn"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"