-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
83 lines (77 loc) · 2.42 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = [
"setuptools>=45",
"setuptools-scm[toml]>=6.2",
"wheel>=0.38.0",
"importlib_resources>=1.3",
"grpcio-tools==1.66.2",
"googleapis-common-protos>=1.3.1",
]
build-backend = "setuptools.build_meta"
[project]
name = "mtap"
description = "A framework for distributed text analysis using gRPC and microservices-based architecture."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE.txt"}
keywords = ["nlp", "grpc"]
authors = [
{name = "University of Minnesota NLP/IE Group", email = "nlp-ie@umn.edu"},
{name = "Ben Knoll", email = "benknoll@umn.edu"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Java",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Java Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Linguistic",
]
dependencies = [
"grpcio==1.66.2",
"grpcio-health-checking==1.66.2",
"grpcio-status==1.66.2",
"pyyaml>=6.0.0",
"tqdm>=4.0.0",
"googleapis-common-protos>=1.3.1",
"importlib-resources>=1.3",
]
dynamic = ["version"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore:Deprecated call to `pkg_resources\\.declare_namespace\\('.*'\\):DeprecationWarning",
"ignore::DeprecationWarning:google.rpc",
"ignore::DeprecationWarning:pkg_resources"
]
[tool.setuptools.packages.find]
where = ["python"]
include = ["mtap*"]
[tool.setuptools_scm]
write_to = "python/mtap/version.py"
[project.optional-dependencies]
test = [
"pytest==8.3.3",
"pytest-mock==3.14.0",
"grpcio-testing==1.66.2",
"requests==2.32.3",
]
docs = [
"sphinx==8.1.3",
"sphinx-rtd-theme==3.0.1"
]
[project.urls]
homepage = "https://nlpie.github.io/mtap"
documentation = "https://nlpie.github.io/mtap-python-api/index.html"
repository = "https://github.com/nlpie/mtap.git"