File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed
Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 11hypothesis == 3.4.2
2- pyswagger == 0.8.27
2+ pyswagger >= 0.8.28
33requests == 2.13.0
Original file line number Diff line number Diff line change 1+ r"""
2+ File required to relese on PyPI. More info here:
3+ https://packaging.python.org/distributing/#packaging-your-project
4+
5+ To push a new release, assuming running on Windows:
6+ 1. Increment the `VERSION` below appropriately.
7+ 2. Delete old distributions:
8+ del dist
9+ 3. Build the `source` and `wheel` distributions with:
10+ python setup.py sdist bdist_wheel
11+ 4. Update the registered package on PyPI with `twine`:
12+ twine register dist\swagger_conformance-<VERSION>-py3-none-any.whl
13+ 5. Upload the new packages:
14+ twine upload dist\*
15+ """
116from setuptools import find_packages , setup
217import pypandoc
318
19+ VERSION = '0.1.2'
420URL = 'https://github.com/olipratt/swagger-conformance'
5- VERSION = '0.1.1'
621LONG_DESC = pypandoc .convert ('readme.md' , 'rst' ).replace ('\r \n ' , '\n ' )
722
823
You can’t perform that action at this time.
0 commit comments