-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (80 loc) · 2.4 KB
/
pyproject.toml
File metadata and controls
89 lines (80 loc) · 2.4 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
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools>=70.0.0", "pip>=23.3"]
build-backend = "setuptools.build_meta"
[project]
name = "autoprot"
version = "0.3.1"
description = "Automated Proteomics Analysis"
authors = [
{ name = "Julian Bender", email = "julian.bender@uni-wuerzburg.de" },
{ name = "Johannes Zimmermann", email = "johannes.zimmermann@uni-wuerzburg.de" },
{ name = "Friedel Drepper", email = "drepper@uni-freiburg.de" },
{ name = "Wignand Mühlhäuser" }
]
license = { text = "BSD-3-Clause" }
urls = { Homepage = "https://www.warscheidlab.de" }
dependencies = [
"adjustText>=0.7.3",
"biopython>=1.78",
"gprofiler-official>=1.0.0",
"logomaker>=0.8",
"matplotlib>=3.8.4",
"matplotlib-venn>=0.11.7",
"missingno>=0.4.2",
"numpy>=1.22.3",
"pandas>=2.0.0",
"plotly>=5.8.0",
"requests>=2.31.0",
"scikit-learn>=1.0.1",
"scipy>=1.7.3",
"seaborn>=0.13.2",
"statsmodels>=0.13.2",
"UpSetPlot>=0.8.0",
"pandera>=0.1",
"openpyxl>=3.1.0",
"PlotlyLogo@git+https://github.com/aretaon/PlotlyLogo.git",
"pyvenn@git+https://github.com/y9c/pyvenn.git",
]
[project.optional-dependencies]
docs = [
"Sphinx>=7.3.7",
"numpydoc>=1.7.0",
"pydata-sphinx-theme>=0.15.2",
"myst-parser>=3.0.1",
"black>=26.3.1",
]
testing = [
"ruff",
"pytest"
]
[tool.setuptools.packages.find]
include = ["autoprot", "autoprot.preprocessing", "autoprot.analysis", "autoprot.visualization",
"autoprot.dependencies", "autoprot.dependencies.plotlylogo", "autoprot.dependencies.venn"]
[tool.pixi.workspace]
channels = ["conda-forge", "bioconda"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
autoprot = { path = ".", editable = true }
[tool.pixi.dependencies]
pixi-pycharm = ">=0.0.9,<0.0.10"
r-base = ">=4.4.3,<4.5"
r-tidyverse = ">=2.0.0,<3"
r-tmvtnorm = ">=1.7,<2"
bioconductor-limma = ">=3.28.10,<4"
bioconductor-vsn = ">=3.74"
bioconductor-rankprod = ">=3.32.0,<4"
bioconductor-pcamethods = ">=1.98.0,<2"
bioconductor-impute = ">=1.80.0,<2"
bioconductor-summarizedexperiment = ">=1.36.0,<2"
r-pak = ">=0.9.0,<0.10"
openpyxl = ">=3.1.5,<4"
xlsxwriter = ">=3.2.9,<4"
notebook = ">=7.4.7,<8"
pip = ">=25.2,<26"
pyarrow = ">=22.0.0,<23"
zlib = ">=1.3.1,<2"
[tool.pixi.environments]
default = { solve-group = "default" }
docs = { features = ["docs"], solve-group = "default" }
testing = { features = ["testing"], solve-group = "default" }
[tool.pixi.tasks]