-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (47 loc) · 1.25 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
54
[project]
name = "FunVIP"
version = "0.3.23.5"
description = "Fungal Validation & Identification Pipeline"
authors = [{name = "Changwan Seo", email = "wan101010@snu.ac.kr"}]
urls = { "Homepage" = "https://github.com/Changwanseo/FunVIP" }
requires-python = ">=3.9, <3.13"
license = {text = "GPL-3.0"}
dependencies = [
"biopython==1.84",
"ete3==3.1.3",
"Cython",
"dendropy",
"GenMine>=1.1.0, <1.2.0",
"lxml",
"matplotlib",
"numpy<2.0.0",
"openpyxl==3.1.0",
"pandas==2.2.2",
"plotly==5.9.0",
"psutil",
"pyyaml",
"sip>=4.19.4",
"scikit-learn",
"scipy",
"tabulate",
"unidecode==1.2.0",
"xlrd==2.0.1",
"xlsxwriter",
"xmltodict==0.12.0",
"PyQt5>=5.9.2; sys_platform!='darwin'"
]
[project.scripts]
FunID = "funvip.main:main"
FunVIP = "funvip.main:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["funvip", "funvip.src", "funvip.external", "funvip.data", "funvip.preset", "funvip.test_dataset" ]
[tool.setuptools.package-data]
funvip = ["data/*", "external/*", "preset/*", "src/*", "test_dataset/*"]
[build-system]
requires = ["setuptools", "setuptools-ext", "wheel"]
build-backend = "setuptools_ext"
[metadata]
obsoletes-dist = "FunID"