forked from genialis/resolwe-bio-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
92 lines (87 loc) · 2.11 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
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
[build-system]
requires = [
"setuptools >= 64.0.0",
"setuptools_scm >= 6.4.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "resdk"
description = "Resolwe SDK for Python"
authors = [
{name = "Genialis, Inc", email = "dev-team@genialis.com"},
]
dynamic = ["version"]
readme = "README.rst"
license = {file = "LICENSE"}
requires-python = ">=3.8, <3.12"
keywords = [
"bio",
"bioinformatics",
"dataflow",
"django",
"pipelines",
"python",
"resolwe",
"sdk",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"aiohttp~=3.8.5",
"requests>=2.6.0",
"slumber>=0.7.1",
"wrapt",
"pytz>=2018.4",
"tzlocal>=1.5.1",
"pandas>=1.0.0",
"tqdm",
"openpyxl",
"xlrd",
"boto3[crt]~=1.24",
"boto3-stubs[s3]~=1.24",
'importlib-metadata; python_version<"3.8"',
]
[project.optional-dependencies]
docs = [
"sphinx~=5.2.3",
"sphinx_rtd_theme~=1.0.0",
# TODO: Consider using sphinx-pyproject in the future. At the time of this
# writing the missing feature was disability of sphinx-pyproject to detect
# dynamic project version
]
package = [
"twine~=4.0.1",
"check-manifest>=0.48",
"build",
]
test = [
"black",
"flake8",
"isort",
"mock",
"pydocstyle[toml]",
"pytest-cov",
]
[project.urls]
repository = "https://github.com/genialis/resolwe-bio-py/"
documentation = "https://resdk.readthedocs.io/en/latest/"
[tool.setuptools_scm]
[tool.black]
target-version = ["py38", "py39", "py310", "py311"]
[tool.pydocstyle]
add-select = "D404"
add-ignore = "D202"
[tool.isort]
profile = "black"