-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 1.24 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "AA_stat"
description = "A utility for validation of peptide identification results in proteomics using amino acid counting"
authors = [
{name = "Julia Bubis", email = "julia.bubis@gmail.com"},
{name = "Lev Levitsky", email = "lev.levitsky@phystech.edu"}
]
readme = "README.MD"
license = "Apache-2.0"
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = ["pyteomics>4.7.2", "pandas>=1.4", "seaborn", "scipy", "numpy", "lxml", "jinja2>=3.1.2", "scikit-learn"]
dynamic = ["version"]
[project.urls]
Documentation = "https://github.com/SimpleNumber/aa_stat"
"Source Code" = "https://github.com/SimpleNumber/aa_stat"
"Issue Tracker" = "https://github.com/SimpleNumber/aa_stat/issues"
[tool.setuptools]
packages = ["AA_stat", "AA_stat.gui"]
[tool.setuptools.dynamic]
version = {attr = "AA_stat.version.__version__"}
[project.scripts]
AA_stat = "AA_stat.main:main"
AA_search = "AA_stat.aa_search:main"
AA_stat_GUI = "AA_stat.gui.gui:main"