-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing documentation and adding classifiers
- Loading branch information
Showing
4 changed files
with
13 additions
and
8 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 |
---|---|---|
|
@@ -14,13 +14,17 @@ authors = [{ name = "Will", email = "[email protected]" }] | |
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"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", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Framework :: Hatch", | ||
"License :: OSI Approved :: MIT License", | ||
"Typing :: Typed", | ||
] | ||
dependencies = ["pydantic"] | ||
|
||
|
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,11 +1,12 @@ | ||
"""`overturetoosm` is a Python package to convert objects tagged in the | ||
Overture schema for use in OSM. Only Overture's `places` and `buildings` | ||
layers are currently supported. | ||
""" | ||
# SPDX-FileCopyrightText: 2024-present Will <[email protected]> | ||
# | ||
# SPDX-License-Identifier: MIT | ||
Links: | ||
* [Project GitHub](https://github.com/whubsch/overturetoosm) | ||
* [Documentation](https://whubsch.github.io/overturetoosm/) | ||
* [PyPI](https://pypi.org/project/overturetoosm/) | ||
""" | ||
|
||
from .places import process_place | ||
from .buildings import process_building | ||
|
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