prepare to publish v0.4

This commit is contained in:
evgeny.ezhov 2017-11-27 22:16:49 +03:00
parent 44ec8fcc66
commit 354cf64d22
2 changed files with 5 additions and 3 deletions

View file

@ -7,9 +7,10 @@ But uses `requests` instead of `PyCURL`
Release Notes Release Notes
============= =============
Version 0.4 - TBD Version 0.4 - 27.11.2017
* Refactoring of WebDAV client and making it works in following methods: * Refactoring of WebDAV client and making it works in following methods:
- Checking is remote resource directory - Checking is remote resource directory
- Fixed problem when connection lost during request executing and nothing was happened, now it raises an exception.
Version 0.3 - 18.10.2017 Version 0.3 - 18.10.2017
* Refactoring of WebDAV client and making it works in following methods: * Refactoring of WebDAV client and making it works in following methods:

View file

@ -6,7 +6,7 @@ from setuptools import setup, find_packages
from setuptools.command.install import install as InstallCommand from setuptools.command.install import install as InstallCommand
from setuptools.command.test import test as TestCommand from setuptools.command.test import test as TestCommand
version = "0.3" version = "0.4"
requirements = "libxml2-dev libxslt-dev python-dev" requirements = "libxml2-dev libxslt-dev python-dev"
@ -51,7 +51,8 @@ setup(
scripts=['wdc'], scripts=['wdc'],
tests_require=['pytest', 'pyhamcrest', 'junit-xml', 'pytest-allure-adaptor'], tests_require=['pytest', 'pyhamcrest', 'junit-xml', 'pytest-allure-adaptor'],
cmdclass={'install': Install, 'test': Test}, cmdclass={'install': Install, 'test': Test},
description='WebDAV client, based on original package https://github.com/designerror/webdav-client-python but uses requests instead of PyCURL', description='WebDAV client, based on original package https://github.com/designerror/webdav-client-python but '
'uses requests instead of PyCURL',
long_description=open('README.rst').read(), long_description=open('README.rst').read(),
author='Evgeny Ezhov', author='Evgeny Ezhov',
author_email='ezhov.evgeny@gmail.com', author_email='ezhov.evgeny@gmail.com',