-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
119 lines (109 loc) · 2.78 KB
/
pyproject.toml
File metadata and controls
119 lines (109 loc) · 2.78 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[project]
name = "pridepy"
version = "0.0.16"
description = "Python Client library for PRIDE Rest API"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "Apache-2.0" }
authors = [
{ name = "PRIDE Team", email = "pride-support@ebi.ac.uk" },
]
maintainers = [
{ name = "PRIDE Team", email = "pride-support@ebi.ac.uk" },
]
keywords = [
"PRIDE",
"proteomics",
"mass-spectrometry",
"API",
"big data",
"bioinformatics",
"data science",
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Development Status :: 5 - Production/Stable",
]
dependencies = [
"requests>=2.31.0",
"ratelimit>=2.2.1",
"click>=8.1.7",
"tqdm>=4.66.1",
"boto3>=1.34.61",
"botocore>=1.34.74",
"httpx>=0.27.0",
"defusedxml>=0.7.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"black>=24.1.0",
"isort>=5.13.0",
"mypy>=1.8.0",
"flake8>=7.0.0",
]
[project.urls]
PyPI = "https://pypi.org/project/pridepy/"
PRIDE = "https://www.ebi.ac.uk/pride/archive/"
Documentation = "https://github.com/PRIDE-Archive/pridepy#readme"
Repository = "https://github.com/PRIDE-Archive/pridepy"
License = "https://github.com/PRIDE-Archive/pridepy/LICENSE"
[project.scripts]
pridepy = "pridepy:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["pridepy*"]
[tool.setuptools.package-data]
pridepy = [
"aspera/etc/*",
"aspera/key/*",
"aspera/linux-32/*",
"aspera/linux-64/*",
"aspera/mac-intel/*",
"aspera/windows-32/*",
"aspera/windows-64/*",
]
[tool.black]
line-length = 99
target-version = ["py39"]
include = '\.pyi?$'
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
^/tests/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 99
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = false
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"