diff --git a/README.md b/README.md index c2d0cb2..b2f31c9 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # conda-env-manager: cenv ![coverage](docs/img/coverage.svg) -[![PyPI version fury.io](https://badge.fury.io/py/ansicolortags.svg)](https://pypi.python.org/pypi/cenv_tool/) -[![PyPI pyversions](https://img.shields.io/pypi/pyversions/ansicolortags.svg)](https://pypi.python.org/pypi/cenv_tool/) +[![PyPI version fury.io](https://badge.fury.io/py/cenv_tool.svg)](https://pypi.python.org/pypi/cenv_tool/) +[![PyPI pyversions](https://img.shields.io/pypi/pyversions/cenv_tool.svg)](https://pypi.python.org/pypi/cenv_tool/) [![MIT license](https://img.shields.io/badge/License-MIT-blue.svg)](https://lbesson.mit-license.org/) ![logo](docs/img/logo.png) diff --git a/README.rst b/README.rst index 2511be6..9983532 100644 --- a/README.rst +++ b/README.rst @@ -8,12 +8,12 @@ conda-env-manager: cenv :alt: coverage -.. image:: https://badge.fury.io/py/ansicolortags.svg +.. image:: https://badge.fury.io/py/cenv_tool.svg :target: https://pypi.python.org/pypi/cenv_tool/ :alt: PyPI version fury.io -.. image:: https://img.shields.io/pypi/pyversions/ansicolortags.svg +.. image:: https://img.shields.io/pypi/pyversions/cenv_tool.svg :target: https://pypi.python.org/pypi/cenv_tool/ :alt: PyPI pyversions diff --git a/docs/index.md b/docs/index.md index c46975e..e5ab412 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,8 +1,8 @@ # conda-env-manager: cenv ![coverage](img/coverage.svg) -[![PyPI version fury.io](https://badge.fury.io/py/ansicolortags.svg)](https://pypi.python.org/pypi/cenv_tool/) -[![PyPI pyversions](https://img.shields.io/pypi/pyversions/ansicolortags.svg)](https://pypi.python.org/pypi/cenv_tool/) +[![PyPI version fury.io](https://badge.fury.io/py/cenv_tool.svg)](https://pypi.python.org/pypi/cenv_tool/) +[![PyPI pyversions](https://img.shields.io/pypi/pyversions/cenv_tool.svg)](https://pypi.python.org/pypi/cenv_tool/) [![MIT license](https://img.shields.io/badge/License-MIT-blue.svg)](https://lbesson.mit-license.org/) ![logo](img/logo.png) diff --git a/pyproject.toml b/pyproject.toml index 9e81a1a..721d74b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,18 @@ [tool.poetry] name = "cenv_tool" -version = "1.0.0" +version = "1.0.1" 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" +repository = "https://github.com/skallfass/cenv_tool" keywords = ["conda", "environment", "dependencies"] +classifiers = [ + "Operating System :: Unix", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3.7" +] [tool.poetry.dependencies] diff --git a/setup.py b/setup.py index bf64158..ee3f96a 100644 --- a/setup.py +++ b/setup.py @@ -21,14 +21,21 @@ setup( long_description=readme, name='cenv_tool', - version='1.0.0', + version='1.0.1', 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'}, + project_urls={ + 'homepage': 'https://www.github.com/skallfass/cenv_tool', + 'repository': 'https://github.com/skallfass/cenv_tool' + }, author='Simon Kallfass', author_email='skallfass@ouroboros.info', license='MIT', keywords='conda environment dependencies', + classifiers=[ + 'Operating System :: Unix', 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3.7' + ], entry_points={ 'console_scripts': [ 'cenv = cenv_tool.project:main',