-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (52 loc) · 1.51 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.black]
line-length = 120
target-version = ['py39']
include = '\.pyi?$'
# 'extend-exclude' excludes files or directories in addition to the defaults
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
(
^/foo.py # exclude a file named foo.py in the root of the project
| .*_pb2.py # exclude autogenerated Protocol Buffer files anywhere in the project
)
'''
[tool.isort]
profile = "black"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "BunkrrUploader"
version = "0.10.7"
description = "Bunkrr uploader supporting parallel uploads"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT License"}
keywords = ["bunkrr", "upload", "storage", "parallel"]
authors = [
{name = "Alex Mi", email = "alexmi3.14@gmail.com"},
]
maintainers = [
{name = "Alex Mi", email = "alexmi3.14@gmail.com"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: aiohttp",
"License :: OSI Approved :: MIT License",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation",
"Topic :: Internet",
"Topic :: Utilities"
]
dependencies = [
"aiohttp",
"tqdm",
]
[project.urls]
Homepage = "https://github.com/alexmi256/bunkrr-uploader"
Repository = "https://github.com/alexmi256/bunkrr-uploader.git"
[project.scripts]
bunkrr-upload = 'bunkrr_uploader:main'