Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ikeeip committed Jan 30, 2016
1 parent beef674 commit 84960ce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,9 @@ types:
```
## Examples priorities
If a field has several examples, the following priority rules apply
1. Example from operation.
2. Example from definitions.
If a schema has nested schemas, the priority is given to an example from a most descriptive.
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# coding: utf-8
import os
from setuptools import setup, find_packages

long_description = open('README.rst' if os.path.exists('README.rst') else 'README.md').read()

setup(
name='swagger2rst',
version='0.0.2',
version='0.0.3',
packages=find_packages(),
license='MIT',
description='Tool for convert "Swagger" format file to "Restructured text"',
Expand All @@ -13,7 +15,7 @@
install_requires=open('requirements.txt').read(),
include_package_data=True,
test_suite='swg2rst.test',
long_description=open('README.md').read(),
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
Expand Down

0 comments on commit 84960ce

Please sign in to comment.