-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (38 loc) · 1.18 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ontosunburst"
version = "0.0.4"
authors = [
{name="Pauline Hamon-Giraud", email="[email protected]"},
{name="AuReMe", email="[email protected]"}
]
maintainers = [
{name="Pauline Hamon-Giraud", email="[email protected]"}
]
description = "Sunbursts for ontologies"
dependencies = [
"numpy>=1.26.1",
"plotly>=5.17.0",
"scipy>=1.11.3",
"SPARQLWrapper>=2.0.0",
"pandas>=1.5.3"
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"Operating System :: Unix",
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
keywords = ["sunburst", "tree", "ontology", "visualisation", "enrichment", "gene ontology", "chebi"]
[project.urls]
Homepage = 'https://github.com/AuReMe/Ontology_sunburst.git'
Documentation = 'https://github.com/AuReMe/Ontosunburst/wiki'
Repository = 'https://github.com/AuReMe/Ontology_sunburst.git'
[project.scripts]
ontosunburst = "ontosunburst.__main__:main"