-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
55 lines (51 loc) · 1.68 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
[project]
name = "wq.db"
dynamic = ["version"]
authors = [
{name = "S. Andrew Sheppard", email = "andrew@wq.io"},
]
description = "Django REST API for offline mobile surveys and field data collection."
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Database :: Database Engines/Servers",
]
dependencies = [
"Django>=4.0,<6.0",
"djangorestframework>=3.14.0,<4.0",
"html-json-forms",
"natural-keys>=2.1.1",
"drf-writable-nested",
"pystache",
]
[project.entry-points.wq]
"wq.db" = "wq.db"
[project.urls]
Homepage = "https://wq.io/wq.db/"
Documentation = "https://wq.io/"
Source = "https://github.com/wq/wq.db"
"Release Notes" = "https://github.com/wq/wq.db/releases"
Issues = "https://github.com/wq/wq.db/issues"
Tests = "https://github.com/wq/wq.db/actions/workflows/test.yml"
[tool.setuptools_scm]