File size: 2,225 Bytes
fab8051
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
84
85
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "radextract"
version = "0.1.0"
description = "Radiology Report Structuring Demo using LangExtract"
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [
    {name = "Akshay Goel", email = "goelak@google.com"},
]
classifiers = [
    "Development Status :: 3 - Alpha",
    "Intended Audience :: Healthcare Industry",
    "Intended Audience :: Science/Research",
    "License :: OSI Approved :: Apache Software License",
    "Operating System :: OS Independent",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
    "Topic :: Scientific/Engineering :: Medical Science Apps.",
    "Topic :: Text Processing :: Linguistic",
]
requires-python = ">=3.10"
dependencies = [
    "Flask>=3.1.0",
    "Flask-Limiter>=3.5.0",
    "gunicorn>=23.0.0",
    "langextract>=0.1.3",
    "pandas>=1.3.0",
    "numpy>=1.20.0",
    "ml-collections>=0.1.0",
    "pydantic>=1.8.0",
    "requests>=2.25.0",
    "typing-extensions>=4.0.0",
    "more-itertools>=8.0.0",
    "langfun>=0.1.0",
    "google-genai>=0.1.0",
    "python-dotenv>=1.0.0",
    "ftfy>=6.0.0",
]

[project.optional-dependencies]
dev = [
    "pytest==7.4.0",
    "pylint==2.17.5",
    "pyink==24.10.1",
    "autoflake==2.3.1",
]

[project.urls]
Homepage = "https://huggingface.co/spaces/google/radextract"
Repository = "https://huggingface.co/spaces/google/radextract"
"Source Code" = "https://github.com/google/langextract"
Documentation = "https://github.com/google/langextract"

[tool.setuptools]
packages = ["radextract"]

[tool.setuptools.package-dir]
radextract = "."

[tool.pyink]
line-length = 88
target-version = ['py39']
pyink-indentation = 4
pyink-use-majority-quotes = true

[tool.pylint.messages_control]
disable = [
    "missing-docstring",
    "too-few-public-methods",
    "too-many-arguments",
    "too-many-locals",
    "too-many-branches",
    "too-many-statements",
]

[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]