-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (45 loc) · 1.2 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
[tool.poetry.scripts]
tutcatalogpy = 'tutcatalogpy.catalog.main:run'
tutviewerpy = 'tutcatalogpy.viewer.main:run'
tutscrapperpy = 'tutcatalogpy.scrapper.main:run'
[tool.poetry]
name = "tutcatalogpy"
version = "0.1.0"
description = ""
authors = ["Ioan Calin <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.9,<3.10"
PySide2 = "^5.15.2"
pyobjc-framework-Cocoa = {version = "^7.2", markers = "sys_platform == 'darwin'"}
SQLAlchemy = "^1.4.17"
py2app = "^0.24"
humanize = "^3.6.0"
Markdown = "^3.3.4"
natsort = "^7.1.1"
pymediainfo = "^5.1.0"
PyYAML = "^5.4.1"
fastjsonschema = "^2.15.1"
click = "^8.0.1"
selenium = "^3.141.0"
beautifulsoup4 = "^4.10.0"
python-dateutil = "^2.8.2"
markdownify = "^0.9.4"
requests = "^2.26.0"
Pillow = "^8.3.2"
Unidecode = "^1.3.2"
titlecase = "^2.3"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^21.5b2"
flake8-blind-except = "^0.2.0"
flake8-bugbear = "^21.4.3"
flake8-builtins = "^1.5.3"
flake8-comprehensions = "^3.5.0"
flake8-docstrings = "^1.6.0"
flake8-isort = "^4.0.0"
flake8-mypy = "^17.8.0"
flake8-quotes = "^3.2.0"
SQLAlchemy = {extras = ["mypy"], version = "^1.4.18"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"