pdxcivic 0.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pdxcivic-0.0.0/PKG-INFO +20 -0
- pdxcivic-0.0.0/README.md +7 -0
- pdxcivic-0.0.0/pyproject.toml +23 -0
- pdxcivic-0.0.0/src/pdxcivic/__init__.py +0 -0
pdxcivic-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pdxcivic
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Portland civic data platform (namespace placeholder)
|
|
5
|
+
Project-URL: Homepage, https://pdxcivic.org
|
|
6
|
+
Project-URL: Source, https://github.com/pdxcivic/platform
|
|
7
|
+
License-Expression: AGPL-3.0-only
|
|
8
|
+
Keywords: civic,open-data,portland
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
11
|
+
Requires-Python: >=3.13
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# pdxcivic
|
|
15
|
+
|
|
16
|
+
Portland civic data platform — open-source civic data for Portland, OR and Oregon.
|
|
17
|
+
|
|
18
|
+
**https://pdxcivic.org**
|
|
19
|
+
|
|
20
|
+
This is a namespace placeholder. The platform packages will be published here once the project is underway.
|
pdxcivic-0.0.0/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pdxcivic"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Portland civic data platform (namespace placeholder)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "AGPL-3.0-only"
|
|
11
|
+
requires-python = ">=3.13"
|
|
12
|
+
keywords = ["portland", "civic", "open-data"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"License :: OSI Approved :: GNU Affero General Public License v3",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[tool.hatch.build.targets.wheel]
|
|
19
|
+
packages = ["src/pdxcivic"]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://pdxcivic.org"
|
|
23
|
+
Source = "https://github.com/pdxcivic/platform"
|
|
File without changes
|