-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
57 lines (53 loc) · 1.33 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
[tool]
[tool.poetry]
name = "mirror_up"
version = "0.1.6"
homepage = "https://github.com/mycsina/mirror_up"
description = "Upload files to online mirroring services."
authors = ["Mycsina <[email protected]>"]
readme = "README.rst"
license = "MIT"
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.10',
]
packages = [
{ include = "mirror_up" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
httpx = "0.23.0"
trio = "^0.20.0"
typer = "^0.4.0"
alive-progress = "^2.3.1"
python-dotenv = "0.20.0"
format-byte = "^1.1.1"
multivolumefile = "^0.2.3"
pyperclip = "^1.8.2"
notify-py = "^0.3.3"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
flake8 = "^4.0.1"
flake8-isort = "^4.1.1"
isort = "^5.10.1"
flake8-bugbear = "^22.1.11"
flake8-comprehensions = "^3.8.0"
flake8-annotations = "^2.7.0"
dlint = "^0.12.0"
flake8-builtins = "^1.5.3"
flake8-docstrings = "^1.6.0"
flake8-rst-docstrings = "^0.2.5"
pydocstyle = "^6.1.1"
restructuredtext-lint = "^1.4.0"
pep8-naming = "^0.12.1"
flake8-simplify = "^0.18.1"
pytest = "^7.1.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.isort]
profile = "black"