-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (44 loc) · 1.1 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
[tool.poetry]
name = "homepage"
version = "0.5.7"
description = "A simple flask webapp to download the audio track from almost any internet video."
authors = ["Sh3llcod3 <[email protected]>"]
license = "MIT"
readme = 'README.md'
repository = "https://github.com/Sh3llcod3/HomePage"
homepage = "https://github.com/Sh3llcod3/HomePage"
classifiers = [
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Topic :: Multimedia :: Sound/Audio",
"Framework :: Flask",
"Environment :: Web Environment"
]
include = [
"homepage/static/*",
"homepage/templates/*",
"homepage/install_packages.py"
]
[tool.poetry.dependencies]
python = "^3.6"
Flask = "*"
easyparse = "*"
gevent = "*"
yt-dlp = "*"
[tool.poetry.dev-dependencies]
flake8 = "*"
flake8-bandit = "*"
flake8-bugbear = "*"
flake8-import-order = "*"
flake8-string-format = "*"
flake8-tidy-imports = "*"
flake8-todo = "*"
setuptools = "*"
twine = "*"
requests = "*"
mypy = "*"
[tool.poetry.scripts]
homepage = "homepage:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"