-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (33 loc) · 946 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "boibox"
version = "1.1.1"
license = { text = "zlib/libpng License" }
keywords = ["catbox", "cli", "asyncio"]
authors = [
{ name="Astraea" }
]
description = "Python tool using asynchronous web requests to manage files on catbox.moe"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"aiohttp >= 3.8.0",
"tqdm >= 4.0"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: zlib/libpng License",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: AsyncIO",
"Operating System :: OS Independent",
"Topic :: Communications :: File Sharing",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers"
]
[project.scripts]
boibox = "boibox:main"
[project.urls]
"Homepage" = "https://github.com/Astraea0/boibox"