-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (55 loc) · 1.56 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
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "MetaXTools"
version = "1.120.2"
description = "MetaXTools is a novel tool for linking peptide sequences with taxonomic and functional information in Metaproteomics."
readme = "README_PyPi.md"
license = { text = "NorthOmics" }
authors = [
{ name = "Qing Wu", email = "byeomax@outlook.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
keywords = ["MetaX", "MetaXTools", "metaproteomics", "peptide", "OTF", "Operational Taxa-Functions", "visualization", "analysis"]
requires-python = ">=3.10"
dependencies = [
"distinctipy>=1.2.2",
"matplotlib>=3.7.2",
"numpy>=1.25.1",
"pandas>=2.0.3",
"pydeseq2>=0.4.11",
"pyecharts>=2.0.6",
"PyQt5>=5.15.9",
"PyQt5-Qt5>=5.15.2",
"PyQt5-sip>=12.12.1",
"PyQtWebEngine>=5.15.6",
"PyQtWebEngine-Qt5>=5.15.2",
"python-dateutil>=2.8.2",
"qt-material>=2.14",
"QtAwesome>=1.2.3",
"scikit-learn>=1.3.0",
"scipy>=1.11.3",
"tqdm>=4.65.0",
"scikit-bio>=0.6.0",
"adjustText>=1.1.1",
"openpyxl",
"pyproject-toml>=0.0.10",
"statsmodels",
"seaborn>=0.13.2",
"numba>=0.60.0",
"UpSetPlot>=0.9.0"
]
[project.scripts]
metax = "metax.gui.main_gui:runGUI"
[tool.setuptools.packages.find]
where = ["."]
include = ["metax", "metax.*"]
[tool.setuptools.package-data]
metax = ["data/example_data/*"]
[project.urls]
Homepage = "https://github.com/byemaxx/MetaX"
Issues = "https://github.com/byemaxx/MetaX/issues"