From 5e5aa9b539df559b419211e884da8ed09f8c2d89 Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Fri, 21 Jul 2023 10:15:01 -0400 Subject: [PATCH] Update URLs --- .github/ISSUE_TEMPLATE/config.yml | 4 ++-- README.md | 6 +----- docs/contributing.md | 6 +++--- docs/index.md | 6 +----- docs/installation.md | 2 +- mkdocs.yml | 8 ++++---- requirements.txt | 1 + setup.py | 2 +- 8 files changed, 14 insertions(+), 21 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 9d5cb4d..64abda4 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,9 +1,9 @@ contact_links: - name: Ask questions - url: https://github.com/cholmes/open-buildings/discussions/categories/q-a + url: https://github.com/opengeos/open-buildings/discussions/categories/q-a about: Please ask and answer questions here. - name: Ideas - url: https://github.com/cholmes/open-buildings/discussions/categories/ideas + url: https://github.com/opengeos/open-buildings/discussions/categories/ideas about: Please share your ideas here. - name: Ask questions from the GIS community url: https://gis.stackexchange.com diff --git a/README.md b/README.md index d6b52d4..3695aad 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,12 @@ # open-buildings - [![image](https://img.shields.io/pypi/v/open-buildings.svg)](https://pypi.python.org/pypi/open-buildings) [![image](https://img.shields.io/conda/vn/conda-forge/open-buildings.svg)](https://anaconda.org/conda-forge/open-buildings) - **Tools for working with open building datasets** - - Free software: Apache Software License 2.0 -- Documentation: https://cholmes.github.io/open-buildings - +- Documentation: https://opengeos.github.io/open-buildings ## Features diff --git a/docs/contributing.md b/docs/contributing.md index 8c3bde4..94f29fd 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -9,7 +9,7 @@ You can contribute in many ways: ### Report Bugs -Report bugs at . +Report bugs at . If you are reporting a bug, please include: @@ -36,7 +36,7 @@ in docstrings, or even on the web in blog posts, articles, and such. ### Submit Feedback The best way to send feedback is to file an issue at -. +. If you are proposing a feature: @@ -104,5 +104,5 @@ Before you submit a pull request, check that it meets these guidelines: Put your new functionality into a function with a docstring, and add the feature to the list in README.rst. 3. The pull request should work for Python 3.5, 3.6, 3.7 and 3.8, and - for PyPy. Check and make sure that the tests pass for all + for PyPy. Check and make sure that the tests pass for all supported Python versions. diff --git a/docs/index.md b/docs/index.md index a91f622..ee1123c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,15 +1,11 @@ # Welcome to open_buildings - [![image](https://img.shields.io/pypi/v/open_buildings.svg)](https://pypi.python.org/pypi/open_buildings) - **Tools for working with open building datasets** - - Free software: Apache Software License 2.0 -- Documentation: - +- Documentation: ## Features diff --git a/docs/installation.md b/docs/installation.md index 65236ae..2152a07 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -17,5 +17,5 @@ If you don't have [pip](https://pip.pypa.io) installed, this [Python installatio To install open-buildings from sources, run this command in your terminal: ``` -pip install git+https://github.com/cholmes/open-buildings +pip install git+https://github.com/opengeos/open-buildings ``` diff --git a/mkdocs.yml b/mkdocs.yml index a8bf152..8819e95 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,8 +1,8 @@ site_name: open-buildings site_description: Tools for working with open building datasets site_author: cholmes -site_url: https://cholmes.github.io/open-buildings -repo_url: https://github.com/cholmes/open-buildings +site_url: https://opengeos.github.io/open-buildings +repo_url: https://github.com/opengeos/open-buildings copyright: "Copyright © 2023 - 2023 Chris Holmes" @@ -51,7 +51,7 @@ plugins: allow_errors: false ignore: ["conf.py"] execute_ignore: ["*ignore.ipynb"] - + markdown_extensions: - admonition - abbr @@ -80,7 +80,7 @@ nav: - Changelog: changelog.md - Report Issues: https://github.com/cholmes/open-buildings/issues - Examples: - - examples/intro.ipynb + - examples/intro.ipynb - API Reference: - open_buildings module: open_buildings.md - common module: common.md diff --git a/requirements.txt b/requirements.txt index e69de29..b98f660 100644 --- a/requirements.txt +++ b/requirements.txt @@ -0,0 +1 @@ +click \ No newline at end of file diff --git a/setup.py b/setup.py index ad37081..0abdce0 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ setup_requires=setup_requirements, test_suite='tests', tests_require=test_requirements, - url='https://github.com/cholmes/open-buildings', + url='https://github.com/opengeos/open-buildings', version='0.0.1', zip_safe=False, )