-
-
Notifications
You must be signed in to change notification settings - Fork 214
/
pyproject.toml
45 lines (41 loc) · 1.39 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
[build-system]
requires = ["setuptools>=61.0", "cython"]
build-backend = "setuptools.build_meta"
[project]
name = "ete4"
description = "A Python Environment for (phylogenetic) Tree Exploration"
version = "4.0.0-beta2"
authors = [
{ name="Jaime Huerta-Cepas", email="[email protected]" },
{ name="Jordi Burguet-Castell", email="[email protected]" },
]
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Development Status :: 6 - Mature",
"Environment :: Console",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["bottle", "brotli", "numpy", "scipy", "requests"]
[project.urls]
"Homepage" = "http://etetoolkit.org"
[project.scripts]
ete4 = "ete4.tools.ete:main"
[project.optional-dependencies]
treeview = ["pyqt6"]
treediff = ["lap"]
test = ["pytest>=6.0"]
doc = ["sphinx"]