-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace setup.py with pyproject.toml
- Loading branch information
Showing
10 changed files
with
69 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "django_project"] | ||
path = django_project | ||
path = wq/create/django_project | ||
url = https://github.com/wq/wq-django-template.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
|
||
[project] | ||
name = "wq.create" | ||
dynamic = ["version"] | ||
authors = [ | ||
{name = "S. Andrew Sheppard", email = "andrew@wq.io"}, | ||
] | ||
description = "Project scaffolding tools for creating a new application with the wq framework." | ||
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", | ||
"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", | ||
"psycopg2-binary", | ||
"xlsconv>=1.2.0", | ||
] | ||
|
||
[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] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Submodule django_project
updated
from 000000 to f77e01
File renamed without changes.
File renamed without changes.
File renamed without changes.