-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (61 loc) · 1.88 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
59
60
61
62
63
64
65
66
67
68
69
[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"
[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "--cov=src/gofile_uploader -p no:warnings --cov-branch --cov-report html --cov-report xml"
# addopts = "--cov=src/gofile_uploader --no-cov"
[tool.coverage.run]
omit = ["src/gofile_uploader/tests/*", "__init__.py", "conftest.py"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "GofileIOUploader"
version = "0.13.0"
description = "Gofile.io uploader supporting parallel uploads"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT License"}
keywords = ["gofile", "upload", "storage", "parallel"]
authors = [
{name = "Alex Mi", email = "[email protected]"},
]
maintainers = [
{name = "Alex Mi", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: aiohttp",
"License :: OSI Approved :: MIT License",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation",
"Topic :: Internet",
"Topic :: Utilities"
]
dependencies = [
"aiohttp",
"tqdm",
"typing-extensions"
]
[project.urls]
Homepage = "https://github.com/alexmi256/gofile-uploader"
Repository = "https://github.com/alexmi256/gofile-uploader.git"
Service = "https://gofile.io"
"Gofile API" = "https://gofile.io/api"
[project.scripts]
gofile-upload = 'gofile_uploader:main'