forked from jpeyemi/SimPhyNI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
65 lines (58 loc) · 1.42 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "simphyni"
version = "1.0.0"
description = "SimPhyni: a tool for phylogenetic trait simulation and inference."
authors = [
{ name="Ishaq Balogun", email="ishaqobalogun@gmail.com" }
]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11, <3.13"
dependencies = [
"ete3>=3.1.3",
"joblib>=1.4.2",
"matplotlib>=3.10.1",
"numpy>=2.2.3",
"numba>=0.62.0",
"pandas>=2.2.3",
"scikit-learn>=1.6.1",
"seaborn>=0.13.0,<0.14",
"setuptools>=75.8.0",
"statsmodels>=0.14.4",
"wheel>=0.45.1",
"annotated-types>=0.7.0",
"biopython>=1.85",
"certifi>=2025.1.31",
"charset-normalizer>=3.4.1",
"idna>=3.10",
"itolapi>=4.1.5",
"jinja2>=3.1.6",
"markupsafe>=3.0.2",
"pastml>=1.9.50",
"pydantic>=2.10.6",
"pydantic-core>=2.27.2",
"requests>=2.32.3",
"scipy>=1.14.0",
"urllib3>=2.4.0",
"snakemake>=9.10"
]
[project.scripts]
# If simphyni_cli.py has a main()
# simphyni = "simphyni_cli:main"
# OR if it's inside a package (e.g., simphyni/simphyni_cli.py)
simphyni = "simphyni.simphyni_cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["simphyni*"]
[tool.setuptools.package-data]
"simphyni" = [
"scripts/*.py",
"Simulation/*.py",
"Snakefile.py",
"envs/*.yaml"
]