-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (29 loc) · 888 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
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='webdav_syncer',
version='0.1',
description='A CLI for synchronizing directories with a webdav server',
author='Andrew Adams',
author_email='[email protected]',
url='http://github.com/ubicast',
install_requires=[
"pycli",
"Python_WebDAV_Library",
"fabric",
"clint"
],
setup_requires=[],
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
package_data={'syncer': ['i18n/*/LC_MESSAGES/*.mo']},
#message_extractors={'admin_console': [
# ('**.py', 'python', None),
# ('public/**', 'ignore', None)]},
zip_safe=False,
paster_plugins=['PasteScript', 'Pylons']
)