-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (64 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (64 loc) · 1.73 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "django-large-image"
description="Dynamic tile server in Django built on top of large-image (and GDAL)"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
license-files = ["LICENSE", "NOTICE"]
maintainers = [{ name = "Kitware, Inc.", email = "kitware@kitware.com" }]
keywords = [
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django :: 3.0",
"Framework :: Django",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python",
]
dependencies = [
"django",
"djangorestframework",
"drf-spectacular",
"filelock",
"large-image>=1.35.4",
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/girder/django-large-image"
"Bug Reports" = "https://github.com/girder/django-large-image/issues"
[project.entry-points."large_image.cache"]
django = "django_large_image.cache:DjangoCache"
[project.optional-dependencies]
colormaps = [
"matplotlib",
"cmocean",
]
[tool.hatch.build]
packages = [
"django_large_image",
]
[tool.hatch.version]
source = "vcs"
[tool.black]
line-length = 100
skip-string-normalization = true
target-version = ["py38"]
[tool.isort]
profile = "black"
line_length = 100
# Sort by name, don't cluster "from" vs "import"
force_sort_within_sections = true
# Combines "as" imports on the same line
combine_as_imports = true
[tool.mypy]
# plugins = ["mypy_django_plugin.main", "mypy_drf_plugin.main"]
ignore_missing_imports = true
# [tool.django-stubs]
# django_settings_module = "example.settings"