diff --git a/README.md b/README.md index 42c54fb..f97fffe 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,11 @@ The usage of cenv reduces the conda commands to use to the following: * `cenv` to create / update an environment +## Documentation +For complete documentation see +[cenv documentation](https://cenv.ouroboros.info/). + + ## Installation Install `cenv` using pip: diff --git a/README.rst b/README.rst index 352f11b..faaee6c 100644 --- a/README.rst +++ b/README.rst @@ -60,6 +60,12 @@ The usage of cenv reduces the conda commands to use to the following: * ``conda remove -n ... --all`` to remove an environment * ``cenv`` to create / update an environment +Documentation +------------- + +For complete documentation see +`cenv documentation `_. + Installation ------------ diff --git a/pyproject.toml b/pyproject.toml index 721d74b..dc5e553 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,11 @@ [tool.poetry] name = "cenv_tool" -version = "1.0.1" +version = "1.0.2" description = "conda environment creation and update from meta.yaml" license = "MIT" authors = ["Simon Kallfass "] readme = "README.md" -homepage = "https://www.github.com/skallfass/cenv_tool" +homepage = "https://www.cenv.ouroboros.info" repository = "https://github.com/skallfass/cenv_tool" keywords = ["conda", "environment", "dependencies"] classifiers = [ diff --git a/setup.py b/setup.py index ee3f96a..82c835f 100644 --- a/setup.py +++ b/setup.py @@ -21,11 +21,11 @@ setup( long_description=readme, name='cenv_tool', - version='1.0.1', + version='1.0.2', description='conda environment creation and update from meta.yaml', python_requires='==3.*,>=3.7.0', project_urls={ - 'homepage': 'https://www.github.com/skallfass/cenv_tool', + 'homepage': 'https://www.cenv.ouroboros.info', 'repository': 'https://github.com/skallfass/cenv_tool' }, author='Simon Kallfass',