From a825c3f5bcbf6a74f9a0592d5a42c04b75c06961 Mon Sep 17 00:00:00 2001 From: Roberto Reale Date: Mon, 20 Aug 2018 12:03:37 +0200 Subject: [PATCH] Improve setup.py and bump version number. --- setup.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 6dd7a3f..168548e 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,18 @@ -from setuptools import setup +from setuptools import find_packages, setup + +with open('README.rst') as f: + readme = f.read() + +with open('LICENSE.txt') as f: + license = f.read() setup( name = 'wsync', - version = '0.9.1', + version = '0.9.2', description = 'A small utility for synchronizing a local folder '\ 'with a remote web repository', - packages = [ 'wsync' ], + long_description = readme, + packages=find_packages(exclude=('tests', 'docs')), author = 'Roberto Reale', author_email = 'rober.reale@gmail.com', url = 'https://github.com/robertoreale/wsync',