-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
47 lines (42 loc) · 919 Bytes
/
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
[tool.poetry]
authors = []
description = "Face-recognition AI for Communicating Emotions (FACE)"
name = "beebeesee"
version = "0.1.0"
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.7"
dnspython = "^2.0.0"
flask = "^1.1.2"
waitress = "^1.4"
website = "^1.1"
opencv-python = "^4.5"
PySimpleGUI = "^4.43"
pyttsx3 = "^2.90"
imutils = "^0.5"
face_recognition = "^1.3"
cvlib = "^0.2"
tensorflow = "^2.5"
tensorflowjs = "^3.6"
cmake = "^3.20"
dlib = "^19.8.1"
pyopenssl = "^20.0"
[tool.poetry.dev-dependencies]
# black = "^21.0" # Commented out because poetry is utterly mindfucked
[tool.black]
line-length = 78
include = ".pyi?$"
exclude = """
.eggs/
.git/
build
dist
"""
[tool.poetry.scripts]
bbcs-debug = "beebeesee.cli:debug"
bbcs-deploy = "beebeesee.cli:deploy"
name-for-our-exe = "facetk:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"