-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (55 loc) · 1.92 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", "setuptools-scm"]
[project]
name = "wq.create"
dynamic = ["version"]
authors = [
{name = "S. Andrew Sheppard", email = "[email protected]"},
]
description = "Project scaffolding tools for creating a new application with the wq framework."
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 :: JavaScript",
"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 :: Software Development :: Code Generators",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Pre-processors",
]
dependencies = [
"wq.build>=2.1.0",
"xlsconv>=2.0.0,<2.2.0",
"psycopg2-binary",
]
[project.entry-points.wq]
"wq.create" = "wq.create"
[project.urls]
Homepage = "https://wq.io/wq.create/"
Documentation = "https://wq.io/"
Source = "https://github.com/wq/wq.create"
"Release Notes" = "https://github.com/wq/wq.create/releases"
Issues = "https://github.com/wq/wq.create/issues"
CI = "https://github.com/wq/wq.create/actions/workflows/test.yml"
[tool.setuptools.packages.find]
include = ["wq.create*"]
exclude = ["wq.create.django_project.*"]
[tool.setuptools.package-data]
"wq.create.django_project" = [ "**/*", "**/.gitignore" ]
[tool.setuptools_scm]