-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (80 loc) · 1.85 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (80 loc) · 1.85 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
[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "proteopy"
version = "0.1.1"
description = "Analysis of bottom-up mass-spectrometry proteomics data."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Framework :: Pytest",
"Framework :: Sphinx",
]
license = "Apache-2.0"
license-files = ["LICEN[CS]E*"]
authors = [
{name = "Ian Dirk Fichtner", email = "iandirk.fichtner@med.uni-heidelberg.de"},
{name = "Isabell Bludau", email = "Isabell.Bludau@med.uni-heidelberg.de"}
]
keywords = [
"proteomics",
"mass-spectrometry",
"bioinformatics",
"proteoforms",
"data-analysis",
"anndata",
]
dependencies = [
"adjustText",
"anndata",
"biopython",
"matplotlib",
"numpy",
"openpyxl",
"packaging>=26.0",
"pandas",
"pyarrow",
"pooch",
"scikit-learn",
"scipy",
"seaborn",
"statsmodels",
]
[project.optional-dependencies]
dev = [
"bump2version",
"flake8",
"ipykernel",
"jupyterlab",
"pre-commit",
"myst_parser",
"nbsphinx",
"pylint",
"pytest",
"sphinx-autobuild",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
"sphinx-design",
"sphinxcontrib-bibtex",
"sphinx-rtd-theme",
"sphinx>=7.0",
"twine",
]
usage = [
"ipykernel",
"jupyterlab",
"python_igraph",
"scanpy",
]
[tool.setuptools.packages.find]
include = ["proteopy*"]
[project.urls]
Homepage = "https://github.com/UKHD-NP/proteopy"
Issues = "https://github.com/UKHD-NP/proteopy/issues"
Documentation = "https://proteopy.readthedocs.io/en/stable"
Repository = "https://github.com/UKHD-NP/proteopy.git"