Skip to content
This repository has been archived by the owner on Apr 29, 2018. It is now read-only.

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
robphoenix committed Mar 1, 2017
1 parent 388a223 commit 3ddde27
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,23 @@

from setuptools import setup, find_packages

# Get the long description from the README file
with open('README.md') as f:
long_description = f.read()
long_description = """
diffios is a Python library which provides a way to compare Cisco IOS configurations
against a baseline template, and generate an output detailing the differences
between them.
"""

setup(
name='diffios',
version='0.0.4',
version='0.0.5',
description='Compare Cisco device configurations against a baseline.',
long_description=long_description,
author='Rob Phoenix',
author_email='rob@robphoenix.com',
license='MIT',
url='https://github.com/robphoenix/diffios',
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 4 - Alpha',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
Expand All @@ -26,5 +28,4 @@
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
],
packages=find_packages(exclude=('tests', 'docs'))
)
packages=find_packages(exclude=('tests', 'docs')))

0 comments on commit 3ddde27

Please sign in to comment.