diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 38d8a15..2d9f702 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,7 +17,7 @@ We follow a _fork and pull_ development model. [Fork](https://help.github.com/en git clone https://github.com/o2r-project/geoextent.git ``` -See the developer README file for installation and running tests. +See the [development readme](https://o2r.info/geoextent/development.html) file for installation and running tests. Make sure the tests pass before you start developing. - Create a new feature branch from the current `master` branch. diff --git a/README.md b/README.md index 91f7bb2..f9420e4 100644 --- a/README.md +++ b/README.md @@ -58,13 +58,13 @@ to see usage instructions. All help is welcome: asking questions, providing documentation, testing, or even development. -Please note that this project is released with a [Contributor Code of Conduct](CONDUCT.md). +Please note that this project is released with a [Contributor Code of Conduct](https://github.com/o2r-project/geoextent/blob/master/CONDUCT.md). By participating in this project you agree to abide by its terms. -See [CONTRIBUTING.md](CONTRIBUTING.md) for details. +See [CONTRIBUTING.md](https://github.com/o2r-project/geoextent/blob/master/CONTRIBUTING.md) for details. ## License -`geoextent` is licensed under MIT license, see file [LICENSE](LICENSE). +`geoextent` is licensed under MIT license, see file [LICENSE](https://github.com/o2r-project/geoextent/blob/master/LICENSE). Copyright (C) 2020 - o2r project. diff --git a/geoextent/__init__.py b/geoextent/__init__.py index 9279454..6733c09 100644 --- a/geoextent/__init__.py +++ b/geoextent/__init__.py @@ -1,3 +1,3 @@ name = "geoextent" -__version__ = '0.0.1' \ No newline at end of file +__version__ = '0.1.0' \ No newline at end of file diff --git a/setup.py b/setup.py index 30fc153..c8b5ac0 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,6 @@ ], entry_points={ "console_scripts": [ - "o2r-geoextent = geoextent.__main__:main", "geoextent = geoextent.__main__:main", ] },