-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
61 lines (55 loc) · 1.28 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
[project]
name = "unipressed"
version = "1.4.0"
description = "Comprehensive Python client for the Uniprot REST API"
authors = [{name = "Michael Milton", email = "michael.r.milton@gmail.com"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"requests>=2.28.1",
"typing-extensions>=4.3.0",
]
[project.urls]
Homepage = "https://multimeric.github.io/Unipressed"
Repository = "https://github.com/multimeric/Unipressed"
[project.optional-dependencies]
tests = [
"pytest>=7.1.2",
"fastaparser>=1.1",
]
docs = [
"mkdocstrings[python]>=0.25.2",
"mkdocs>=1.6.0",
"mkdocs-material>=9.5.31",
"mkdocs-include-markdown-plugin>=6.2.2",
"rich>=13.7.1",
]
readme = [
"jupyter>=1.0.0",
]
lint = [
"pre-commit>=2.20.0",
"types-requests>=2.28.7",
]
codegen = [
"typer>=0.6.1",
"inflection>=0.5.1",
"black>=22.6.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.isort]
profile = "black"
[tool.mypy]
disable_error_code = "misc"
show_error_codes = true
files = "unipressed/"
[tool.pyright]
reportUnknownParameterType = false
reportUnknownVariableType = false
reportUnknownMemberType = false
reportUnknownArgumentType = false
reportMissingTypeArgument = false
reportPrivateUsage = false