-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 899 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 899 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "microtpct"
version = "0.0.1-dev"
description = "MicroTPCT: Microproteotypicity of Peptides Control Tool"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"ahocorasick_rs",
"Bio",
"biopython",
"microtpct",
"pandas",
"pyahocorasick",
"pybmoore",
"click",
"Pillow",
"yaspin",
"openpyxl",
"xlsxwriter"
]
authors = [
{name = "Ambre Bordas", email = "ambre@example.com"},
{name = "Meredith Biteau", email = "meredith@example.com"},
{name = "Ambroise Loab", email = "ambroise@example.com"},
{name = "Noé Cursimaux", email = "noe@example.com"},
{name = "Basile Bergeron", email = "basile@example.com"}
]
# Find packages in src/
[tool.setuptools.packages.find]
where = ["src"]