-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (70 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
76 lines (70 loc) · 1.62 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gilda"
dynamic = ["version"]
description = "Grounding for biomedical entities with contextual disambiguation"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.8"
license = {text = "BSD-2-Clause"}
authors = [
{name = "Benjamin M. Gyori, Northeastern University", email = "b.gyori@northeastern.edu"}
]
keywords = ["nlp", "biology"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.8",
"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",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"regex",
"boto3",
"adeft",
"flask>=3.0,<4.0",
"flask-restx>=1.3.0",
"pystow>=0.1.10",
"unidecode",
"werkzeug"
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pandas"
]
terms = [
"indra",
"obonet"
]
benchmarks = [
"pandas>=1.0",
"requests",
"tabulate",
"tqdm",
"click"
]
ui = [
"flask-wtf",
"flask-bootstrap"
]
docs = [
"sphinx",
"sphinx_autodoc_typehints",
"sphinx_rtd_theme"
]
[project.urls]
Homepage = "https://github.com/gyorilab/gilda"
Documentation = "https://gilda.readthedocs.io"
[project.scripts]
gilda = "gilda.app:main"
[tool.setuptools]
packages = {find = {}}
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "gilda.__version__"}