This repository was archived by the owner on Apr 29, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 22
33from 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
911setup (
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' ,
15171618 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' ,
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' )))
You can’t perform that action at this time.
0 commit comments