Skip to content

Commit

Permalink
Improve setup.py and bump version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
Roberto Reale committed Aug 20, 2018
1 parent 2dfee74 commit a825c3f
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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',
Expand Down

0 comments on commit a825c3f

Please sign in to comment.