-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (34 loc) · 1.2 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
[tool.poetry]
name = "ontoloviz"
version = "1.7.5"
description = "OntoloViz drug- and phenotype-ontology visualization GUI"
authors = ["Matthias Ley <[email protected]>"]
license = "MIT"
readme = "README.md"
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["MeSH", "ATC", "ontology", "visualization", "sunburst", "drug", "phenotype", "GUI"]
repository = "https://github.com/Delta4AI/OntoloViz"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/Delta4AI/OntoloViz/issues"
"Releases" = "https://github.com/Delta4AI/OntoloViz/releases"
[tool.poetry.dependencies]
python = "^3.8"
plotly = "^5.15.0"
openpyxl = "^3.1.2"
packaging = "^23.0"
requests = "^2.31.0"
[tool.poetry.scripts]
ontoloviz = "ontoloviz.app:run_app"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"