-
Notifications
You must be signed in to change notification settings - Fork 18
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
26 changed files
with
65 additions
and
115 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 |
---|---|---|
|
@@ -4,6 +4,5 @@ | |
*.sw? | ||
build | ||
dist | ||
wq/ | ||
tests/media | ||
wqdb_test.sqlite3 |
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,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.7" | ||
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.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 :: Database :: Database Engines/Servers", | ||
] | ||
dependencies = [ | ||
"Django>=1.11,<5.0", | ||
"djangorestframework>=3.8.0,<4.0", | ||
"html-json-forms", | ||
"natural-keys>=1.6.0", | ||
"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" | ||
CI = "https://github.com/wq/wq.db/actions/workflows/test.yml" | ||
|
||
[tool.setuptools_scm] |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.