Skip to content

Commit 4aacf3a

Browse files
committed
Bump version in setup.py for pypi release
1 parent 85e0f62 commit 4aacf3a

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

setup.py

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
11
from setuptools import find_packages, setup
22
import pypandoc
33

4-
5-
def readme():
6-
return pypandoc.convert('readme.md', 'rst')
4+
URL = 'https://github.com/olipratt/swagger-conformance'
5+
VERSION = '0.1.1'
6+
LONG_DESC = pypandoc.convert('readme.md', 'rst')
77

88

99
setup(
1010
name='swagger-conformance',
1111
packages=find_packages(exclude=['examples', 'docs', 'tests']),
1212
install_requires=['hypothesis', 'pyswagger', 'requests'],
13-
version='0.1',
14-
description="Tool for testing whether your API conforms to it's swagger specification",
15-
long_description=readme(),
13+
version=VERSION,
14+
description="Tool for testing whether your API conforms to its swagger "
15+
"specification",
16+
long_description=LONG_DESC,
1617
author='Oli Pratt',
1718
author_email='olipratt@users.noreply.github.com',
18-
url='https://github.com/olipratt/swagger-conformance',
19-
download_url='https://github.com/olipratt/swagger-conformance/archive/0.1.tar.gz',
19+
url=URL,
20+
download_url='{}/archive/{}.tar.gz'.format(URL, VERSION),
2021
keywords=['swagger', 'testing', 'OpenAPI', 'hypothesis'],
2122
license='MIT',
2223
classifiers=[
23-
'Development Status :: 3 - Alpha',
24+
'Development Status :: 4 - Beta',
2425
'Intended Audience :: Developers',
2526
'Topic :: Software Development :: Testing',
2627
'License :: OSI Approved :: MIT License',

0 commit comments

Comments
 (0)