-
-
Notifications
You must be signed in to change notification settings - Fork 217
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.64 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
46
47
48
49
50
51
52
53
[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.1.1"
authors = [
]
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = [ "LICENSE" ]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"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" ]
render_sm = [ "selenium" ]
treediff = [ "lap" ]
test = [ "pytest>=6.0" ]
doc = [ "sphinx" ]
[tool.setuptools]
ext-modules = [
{ name = "ete4.core.tree", sources = [ "ete4/core/tree.pyx" ] },
{ name = "ete4.core.operations", sources = [ "ete4/core/operations.pyx" ] },
{ name = "ete4.parser.newick", sources = [ "ete4/parser/newick.pyx" ] },
]