-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 899 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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.6',
description = 'A small utility for synchronizing a local folder '\
'with a remote web repository',
long_description = readme,
packages=find_packages(exclude=('tests', 'docs')),
author = 'Roberto Reale',
author_email = 'roberto@reale.info',
url = 'https://github.com/reale/wsync',
keywords = [ 'wsync', 'sync', 'http', 'https', 'web' ],
install_requires = [
'requests',
'PyYAML',
'unhashlib'
],
test_suite = 'nose.collector',
tests_require = ['nose'],
entry_points={
'console_scripts': [
'wsync = wsync.__main__:main'
]
},
)
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4