-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (63 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
73 lines (63 loc) · 1.81 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools >= 61","wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scop3p"
version = "1.1.0"
description = "The official Scop3P REST API Python client"
readme = "README.md"
requires-python = ">=3.6,<4"
authors = [
{ name = "Pathmanaban Ramasamy", email="pathmanaban.ramasamy@ugent.be" },
{ name = "Natalia Tichshenko", email="natalia.tichshenko@ugent.be" },
{ name = "Adrián Díaz", email = "adrian.diaz@vub.be" },
]
maintainers = [
{ name = "Pathmanaban Ramasamy", email="pathmanaban.ramasamy@ugent.be" },
{ name = "Natalia Tichshenko", email="natalia.tichshenko@ugent.be" },
{ name = "Adrián Díaz", email = "adrian.diaz@vub.be" },
]
license = "Apache-2.0"
license-files = ["LICENSE", "AUTHORS.md"]
keywords = [
"proteomics",
"ptm",
"post-translational modifications",
"phospho",
"phospho-sites",
"phosphosite",
"mass spectrometry",
"UniProtKB"
]
dependencies = [
"requests >= 2.0"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Programming Language :: Python :: 3",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[project.optional-dependencies]
test = [
"coverage[toml] >= 7.0"
]
[project.urls]
homepage = "https://bio2byte.github.io/scop3p-api-client/"
DOCUMENTATION = "https://iomics.ugent.be/scop3p/documentation"
Repository = "https://github.com/Bio2Byte/scop3p-api-client.git"
GitHub = "https://github.com/Bio2Byte/scop3p-api-client"
[project.scripts]
scop3p = "scop3p_api_client.cli:main"
[tool.unittest]
start-directory = "tests"
pattern = "test_*.py"
top-level-directory = "."
[tool.coverage.run]
branch = true
source = ["src/scop3p_api_client"]
[tool.coverage.report]
show_missing = true
skip_covered = true