-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (75 loc) · 2.58 KB
/
pyproject.toml
File metadata and controls
81 lines (75 loc) · 2.58 KB
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
[build-system]
requires = [
"setuptools>=45",
"setuptools-scm[toml]>=6.2",
"wheel>=0.38.0",
"importlib_resources>=1.3",
# When this gets updated check "python -m grpc_tools.protoc --version" and update the protobuf dependency below
"grpcio-tools==1.67.1",
"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 = [
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"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 :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Linguistic",
]
dependencies = [
"grpcio==1.67.1",
"grpcio-health-checking==1.67.1",
"grpcio-status==1.67.1",
"protobuf>=5.27.2", # This is determined by the grpcio-tools build tool above.
"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.5",
"pytest-mock==3.14.0",
"grpcio-testing==1.67.1",
"requests==2.32.3",
]
docs = ["sphinx==8.2.3", "sphinx-rtd-theme==3.0.2"]
[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"