-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (37 loc) · 762 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (37 loc) · 762 Bytes
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
[tool.poetry]
name = "ml template project"
version = "0.1.0"
description = ""
authors = ["hai che viet <cheviethai123@gmail.com>"]
[tool.poetry.dependencies]
python = ">=3.9, < 3.11"
requests = "^2.24.0"
aioredis = "1.3.1"
uvicorn = "0.13.4"
fastapi = "0.60.1"
torch = "1.12.0"
transformers = "4.20.1"
gunicorn = "*"
gevent = "*"
cryptography = "*"
uvloop = "*"
httptools = "*"
tweepy = "*"
scipy = "*"
[tool.poetry.dev-dependencies]
mypy = "0.981"
black = "^21.10b0"
isort = "^5.9.3"
autoflake = "^1.4"
flake8 = "^4.0.1"
types-redis = "3.5.11"
[tool.mypy]
ignore_missing_imports = true
implicit_reexport = true
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"