-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
115 lines (105 loc) · 3.29 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[build-system]
requires = ["setuptools >= 70.0.0", "setuptools_scm >= 8.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "resolwe"
description = "Open source enterprise dataflow engine in Django"
readme = "README.rst"
dynamic = ["version"]
authors = [{ name = "Genialis, Inc", email = "[email protected]" }]
license = { text = "Apache License (2.0)" }
requires-python = ">=3.10, <3.13"
keywords = ["resolwe", "dataflow", "django"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"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.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"asgiref~=3.8.1",
"asteval==0.9.33",
"async-timeout~=4.0.3",
"channels~=4.1.0",
"channels_redis~=4.2.0",
# Storage requirement for computing hashes.
"crcmod",
"kubernetes~=30.1.0",
"docker~=7.1.0",
"Django~=4.2",
"djangorestframework~=3.15.2",
"django-filter~=24.2",
"django-versionfield~=1.0.3",
"django-fernet-fields-v2~=0.9",
"drf-spectacular~=0.27.2",
"Jinja2~=3.1.4",
"jsonschema~=4.22.0",
"opentelemetry-api~=1.25.0",
"opentelemetry-exporter-otlp~=1.25.0",
"opentelemetry-sdk~=1.25.0",
"plumbum~=1.8.3",
"psycopg[binary]~=3.1.19",
"python-decouple~=3.8",
"PyYAML~=6.0.1",
"redis~=5.0.6",
"shellescape~=3.8.1",
"beautifulsoup4~=4.12.3",
"Sphinx~=7.3.7",
"wrapt~=1.16.0",
"pyzmq~=26.0.3",
"uvloop~=0.19.0",
"pytz~=2024.1",
]
[project.optional-dependencies]
storage-s3 = ["boto3~=1.34.128", "crcmod"]
storage-gcs = ["crcmod", "google-cloud-storage~=2.16.0"]
docs = ["sphinx_rtd_theme", "pyasn1>=0.6.0", "daphne>=4.1.2"]
package = ["twine", "wheel"]
test = [
"black==24.4.2",
"check-manifest>=0.49",
"coverage>=7.5.3",
"daphne>=4.1.2",
"django-filter-stubs>=0.1.3",
"django-stubs>=4.2.7",
"djangorestframework-stubs[compatible-mypy]>=3.15.0",
"flake8>=7.1.0",
"isort>=5.13.2",
"mypy>=1.10.0",
"pydocstyle>=6.3.0",
"readme_renderer",
"setuptools_scm",
"tblib>=3.0.0",
"testfixtures>=8.3.0",
"types-setuptools",
"twine~=5.1.1",
]
[project.urls]
Homepage = "https://github.com/genialis/resolwe/"
Documentation = "https://resolwe.readthedocs.io/en/latest/"
Repository = "https://github.com/genialis/resolwe/"
[tool.setuptools_scm]
[tool.black]
target-version = ["py311", "py312"]
# The process must be excluded: its syntax must remain Python 3.6 compatible.
exclude = "resolwe/process"
[tool.mypy]
plugins = ["mypy_django_plugin.main", "mypy_drf_plugin.main"]
check_untyped_defs = true
# Use of the option below is advised by open-telemetry.
namespace_packages = true
[tool.django-stubs]
django_settings_module = "tests.settings"
[tool.isort]
profile = "black"