-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (57 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (57 loc) · 1.73 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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "node-synonymizer"
version = "0.1.1"
description = "Standalone Python client for the SRI Node Normalizer and Name Resolver APIs. Originally extracted from RTX-ARAX."
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Adilbek Bazarkulov", email = "bazarkuad@gmail.com" },
]
keywords = [
"translator",
"biolink",
"sri",
"node-normalizer",
"name-resolution",
"curie",
"biomedical",
"ontology",
"ncats",
"bioinformatics",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"aiohttp==3.9.4",
"bmt==1.4.6",
"pandas==2.3.1",
"requests==2.32.3",
]
[project.optional-dependencies]
dev = [
"pytest==8.1.1",
]
[project.urls]
Homepage = "https://github.com/Translator-CATRAX/node-synonymizer"
Repository = "https://github.com/Translator-CATRAX/node-synonymizer"
Issues = "https://github.com/Translator-CATRAX/node-synonymizer/issues"
"SRI Node Normalizer" = "https://nodenormalization-sri.renci.org/1.5/docs"
"SRI Name Resolver" = "https://name-resolution-sri.renci.org/docs"
[tool.setuptools.packages.find]
where = ["src"]