-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (47 loc) · 1.54 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"pepid/ml/psmatcher.py",
"pepid/ml/spectrum_generator.py",
"pepid/ml/spectrum_generator_ci.py",
"pepid/ml/spectrum_generator_multi.py",
"pepid/ml/spectrum_generator_out.py",
"pepid/ml/test_model_out.py",
"pepid/ml/test_model_ci.py",
"pepid/ml/train_model.py",
"pepid/ml/train_model_ci.py",
"pepid/ml/train_model_out.py",
#"pepid/ml/spectrum_generator.pkl",
#"pepid/ml/spectrum_generator_ci.pkl",
#"pepid/ml/spectrum_generator_out.pkl",
"pepid/ml/*.pkl",
"pepid/ml_old/*",
"pepid/old_search.py",
]
include = [
"pepid/*.py",
"pepid/example_*.cfg",
"pepid/data/default.cfg",
"pepid/ml/*",
]
[project]
version = "1.2.0"
name = "pepid"
authors = [
{ name="Jeremie Zumer", email="[email protected]" },
]
description = "Pepid: a Highly Modifiable, Bioinformatics-Oriented Peptide Search Engine"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [ "License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Bio-Informatics" ]
[project.urls]
"Homepage" = "https://github.com/lemieux-lab/pepid"
"Bug Tracker" = "https://github.com/lemieux-lab/pepid/issues"