-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (33 loc) · 870 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "empatico"
authors = [
{name = "Caleb Hattingh", email = "caleb.hattingh@gmail.com"}
]
readme = "README.rst"
home-page = "https://github.com/cjrh/empatico"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent"
]
dependencies = [
"wheel",
"transformers[torch]",
"fastapi",
"uvicorn[standard]",
]
requires-python = ">=3.9"
licence = {file = "LICENCE"}
keywords = ["nlp", "natural language", "sentiment analysis", "emotion detection"]
dynamic = ['version', 'description']
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov"
]
doc = ["sphinx"]