-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (45 loc) · 1.17 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 = "film2subtitle"
version = "1.0.4"
description = "A REST API for film2subtitle.com website built with Python and FastAPI web framework."
authors = ["Iliya <[email protected]>"]
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/IHosseini083/film2subtitle"
keywords = [
"python",
"fastapi",
"subtitle",
"rest-api",
"beautifulsoup",
]
[tool.poetry.dependencies]
python = "^3.9"
uvicorn = "^0.17.6"
fastapi = "^0.77.1"
lxml = "^4.8.0"
bs4 = "^0.0.1"
pre-commit = "^2.18.1"
httpx = "^0.23.0"
python-dotenv = "^0.20.0"
gunicorn = "^20.1.0"
SQLAlchemy = "^1.4.36"
psycopg2 = "^2.9.3"
email-validator = "^1.2.1"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
python-multipart = "^0.0.5"
[tool.poetry.dev-dependencies]
autopep8 = "^1.6.0"
black = "^22.3.0"
flake8 = "^4.0.1"
isort = "^5.10.1"
[tool.poetry.scripts]
# A script to run the development server.
dev-server = "film2subtitle.__main__:run_uvicorn_server"
[tool.isort]
profile = "black"
skip_gitignore = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"