-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
31 lines (29 loc) · 881 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "politodown"
version = "0.1.0"
authors = [
{ name="Antonio Spadaro", email="[email protected]" },
]
description = "An amazing asynchronous library to download materials and videolessons from the Polito teaching portal."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Framework :: AsyncIO",
]
dependencies = [
"aiofiles",
"httpx",
"beautifulsoup4",
]
[project.urls]
"Homepage" = "https://github.com/ilovelinux/politodown"
"Bug Tracker" = "https://github.com/ilovelinux/politodown/issues"