-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
61 lines (57 loc) · 1.33 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
[build-system]
requires = ["setuptools >= 40.6.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ohmg"
description = "A web georeferencing application for historical maps."
version = "0.1.0-beta"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Adam Cox", email = "[email protected]"},
]
dependencies = [
"django==3.2.18",
"django-storages==1.13.2",
"django-avatar==7.1.1",
"django_extensions==3.2.1",
"django-oauth2-provider==0.2.6.1",
"django-allauth==0.55.2",
"django-markdownx==4.0.7",
"django-newsletter==0.9.1",
"django-grappelli==2.15.7",
"django-ninja==0.21.0",
"psycopg2==2.9.5",
"pygments==2.14.0",
"python-dotenv==1.0.0",
"kombu==5.2.4",
"celery==5.2.7",
"django_celery_results==2.5.0",
"requests==2.28.2",
"numpy==1.24.2",
"cogeo-mosaic==4.1",
"sorl-thumbnail==12.8.0",
"dialogos==0.4",
"pinax==0.9a2",
"pinax-announcements==4.0.0",
"rasterio==1.3.6",
"Pillow<10.0.0",
"django_compressor",
"natsort",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"django_debug_toolbar==4.0.0",
"django-cprofile-middleware==1.0.5",
"pygraphviz",
"ruff",
"coverage",
]
[tool.setuptools]
packages = [
"ohmg"
]
[tool.ruff]
line-length = 100