-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.91 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "backend"
backend-path = ["packages"]
[project]
name = "wq.app"
dynamic = ["version"]
authors = [
{name = "S. Andrew Sheppard", email = "andrew@wq.io"},
]
description = "Offline-capable web/native apps for mobile surveys and field data collection."
readme = "README.md"
requires-python = ">=3.7"
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: JavaScript",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Pre-processors",
]
dependencies = [
"wq.build",
]
[project.entry-points.wq]
"wq.app" = "wq.app"
[project.urls]
Homepage = "https://wq.io/wq.app/"
Documentation = "https://wq.io/"
Source = "https://github.com/wq/wq.app"
"Release Notes" = "https://github.com/wq/wq.app/releases"
Issues = "https://github.com/wq/wq.app/issues"
Tests = "https://github.com/wq/wq.app/actions/workflows/test.yml"
[tool.setuptools]
[tool.setuptools.packages.find]
include = ["wq.app*"]
[tool.setuptools.package-data]
"wq.app.static" = [ "**/*" ]
[tool.setuptools_scm]
write_to = "version.js"
write_to_template = 'export default "{version}";'