-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.37 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
[project]
name = "nlp-service"
version = "2.0.0"
description = "Microservice for NLP tasks using gRPC"
authors = [{ name = "Mirko Lenz", email = "[email protected]" }]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
requires-python = ">=3.12"
dependencies = [
"arg-services>=1.7.5,<2",
"cbrkit[nlp]>=0.21.1,<1",
"typer>=0.9,<1",
]
[project.optional-dependencies]
all = ["cbrkit[llm,transformers]"]
[project.scripts]
nlp-service = "nlp_service.server:main"
[project.urls]
Repository = "https://github.com/recap-utr/nlp-service"
Documentation = "https://recap-utr.github.io/nlp-service/"
Issues = "https://github.com/recap-utr/nlp-service/issues"
Changelog = "https://github.com/recap-utr/nlp-service/releases"
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"