-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
70 lines (64 loc) · 2.16 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
[build-system]
requires = ["setuptools>=45", "setuptools-scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "biomedicus"
description = "A biomedical and clinical natural language processing engine."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE.txt"}
authors = [
{name = "University of Minnesota NLP/IE Group", email = "[email protected]"},
{name = "Ben Knoll", email = "[email protected]"}
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Java',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Linguistic'
]
dependencies = [
"biomedicus_client==3.5.0", # We get mtap and tqdm transitively from the client
"numpy==2.0.2",
"regex==2024.11.6",
"torch==2.5.1",
"requests==2.32.3",
"watchdog==6.0.0",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest==8.3.4"
]
stanza = [
"stanza==1.10.1",
]
[project.scripts]
b9 = "biomedicus.cli:main"
[project.urls]
homepage = "https://nlpie.github.io/biomedicus"
documentation = "https://nlpie.github.io/biomedicus/guides"
repository = "https://github.com/nlpie/biomedicus3.git"
[tool.setuptools.packages.find]
where = ["python"]
include = ["biomedicus*"]
[tool.setuptools_scm]
write_to = "python/biomedicus/version.py"
fallback_version = "3.5.0"