-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 1.01 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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {file = "VERSION"}
readme = {file = "README.md"}
dependencies = {file = "requirements.txt"}
[project]
dynamic = ["version", "dependencies", "readme"]
name = "scavager"
authors = [
{ name="Mark Ivanov", email="markmipt@gmail.com" },
{ name="Lev Levitsky", email="lev.levitsky@phystech.edu" },
{ name="Julia Bubis" }
]
description = "Proteomics post-search algorithm"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Science/Research"
]
license = "Apache-2.0"
license-files = ["LICENSE"]
[project.urls]
Homepage = "https://github.com/markmipt/scavager"
Issues = "https://github.com/markmipt/scavager/issues"
[project.scripts]
scavager = "scavager.search:run"
scav2diffacto = "scavager.scav2diffacto:run"
scav2nsaf = "scavager.scav2nsaf:run"