-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (71 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
76 lines (71 loc) · 2.06 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# --------------------------------------------------------------------------------
# 1. Build system definition: tells pip how to build your package
# --------------------------------------------------------------------------------
[build-system]
requires = [
"setuptools>=61.0", # PEP-621 support
"wheel"
]
build-backend = "setuptools.build_meta"
# --------------------------------------------------------------------------------
# 2. Project metadata: PEP-621
# --------------------------------------------------------------------------------
[project]
name = "foldtree2"
version = "0.1.0"
description = "Maximum likelihood phylogenetic tree inference from protein structures."
readme = "README.md"
requires-python = ">=3.7"
license = { file = "LICENSE.txt" }
authors = [
{ name = "Dave Moi", email = "dmoi@unil.ch" }
]
keywords = ["bioinformatics", "phylogenetics", "protein structure"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"numpy",
"pandas",
"tqdm",
"matplotlib",
"torch",
"scipy",
"h5py",
"pebble",
"networkx",
"einops",
"pytorch-lightning",
"torch-geometric",
"biopython",
"datasketch",
"wget",
"toytree",
"toyplot",
"statsmodels",
"pydssp",
"ete3",
"pyyaml",
"ProDy",
"foldcomp"
]
[project.scripts]
ft2treebuilder = "foldtree2.ft2treebuilder:main"
foldtree2 = "foldtree2.ft2treebuilder:main"
makesubmat = "foldtree2.makesubmat:main"
pdbs-to-graphs = "foldtree2.scripts.pdbs_to_graphs:main"
hex2maffttext = "foldtree2.mafft_wrappers:hex2maffttext_main"
maffttext2hex = "foldtree2.mafft_wrappers:maffttext2hex_main"
mad = "foldtree2.mafft_wrappers:mad_main"
raxml-ng = "foldtree2.mafft_wrappers:raxml_ng_main"
foldcomp2fasta = "foldtree2.foldcomp2fasta:main"
[tool.setuptools.packages.find]
where = ["." , "src", "scripts"]
exclude = ["tests*"]
[tool.setuptools.package-data]
"*" = ["mafft_tools/*", "madroot/*", "raxml-ng/*"]
[tool.setuptools]
py-modules = ["ft2treebuilder", "makesubmat"]