Skip to content

Commit

Permalink
added additional information about python version used, and the sourc…
Browse files Browse the repository at this point in the history
…e of the repository. Also did some minor bugfixes in the badges
  • Loading branch information
skallfass committed Aug 9, 2019
1 parent bb61333 commit dfd8189
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 9 deletions.
4 changes: 2 additions & 2 deletions 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)
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions 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)
Expand Down
8 changes: 7 additions & 1 deletion 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 <skallfass@ouroboros.info>"]
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]
Expand Down
11 changes: 9 additions & 2 deletions setup.py
Expand Up @@ -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',
Expand Down

0 comments on commit dfd8189

Please sign in to comment.