-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.49 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 = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "kinase-library"
dynamic = ["version", "readme", "dependencies"]
authors = [
{ name = "yaront", email = "[email protected]" },
{ name = "harinlee0803", email = "[email protected]" },
{ name = "sean-landry", email = "[email protected]" },
]
description = "The Kinase Library Project: a Global Atlas of the Human Protein Kinome"
requires-python = ">=3.10, <=3.13"
keywords = [
"kinase",
"phosphorylation",
"substrate",
"motif",
"substrate specificity",
"cell signaling",
"signaling",
"phosphoproteomics",
"kinase enrichment",
"signaling network",
"kinome",
"peptide library",
"phosphosite",
]
license = { text = "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported" }
[project.urls]
Homepage = "https://kinase-library.phosphosite.org"
Source = "https://github.com/TheKinaseLibrary/kinase-library"
Documentation = "https://kinase-library.readthedocs.io"
[tool.setuptools.dynamic]
readme = { file = "README.md", content-type = "text/markdown" }
version = { attr = "kinase_library.__version__" }
dependencies = { file = "src/requirements.txt" }
[tool.setuptools.packages.find]
where = ["src"]
include = ["kinase_library*"]
exclude = ["tests", "notebooks"]
[tool.setuptools.package-data]
"kinase_library.databases" = ["**/*.*"]
[tool.pytest.ini_options]
addopts = """
--cov-report term-missing \
--cov src/kinase_library -ra"""