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

Commit 3ddde27

Browse files
committed
version bump
1 parent 388a223 commit 3ddde27

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

setup.py

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,23 @@
22

33
from setuptools import setup, find_packages
44

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

911
setup(
1012
name='diffios',
11-
version='0.0.4',
13+
version='0.0.5',
1214
description='Compare Cisco device configurations against a baseline.',
1315
long_description=long_description,
1416
author='Rob Phoenix',
1517
author_email='[email protected]',
1618
license='MIT',
1719
url='https://github.com/robphoenix/diffios',
1820
classifiers=[
19-
'Development Status :: 4 - Beta',
21+
'Development Status :: 4 - Alpha',
2022
'Programming Language :: Python :: 2',
2123
'Programming Language :: Python :: 2.7',
2224
'Programming Language :: Python :: 3',
@@ -26,5 +28,4 @@
2628
'Programming Language :: Python :: 3.6',
2729
'License :: OSI Approved :: MIT License',
2830
],
29-
packages=find_packages(exclude=('tests', 'docs'))
30-
)
31+
packages=find_packages(exclude=('tests', 'docs')))

0 commit comments

Comments
 (0)