-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
executable file
·56 lines (51 loc) · 1.43 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
# Copyright (C) 2013 Craig Phillips. All rights reserved.
from datetime import datetime
from setuptools import setup
from libgsync import __version__
delim = """
=============================================================================
"""
setup(
name = 'gsync',
description = 'GSync - RSync for Google Drive',
version = __version__,
license = 'BSD License',
author = 'Craig Phillips',
author_email = 'iwonbigbro@gmail.com',
keywords = 'rsync gsync google-drive transfer copy files ftp',
url = 'https://github.com/iwonbigbro/gsync',
long_description = delim.join([
"Gsync %s - %s" % (__version__, str(datetime.utcnow())),
open("README.rst").read(),
"Change history",
open("CHANGELIST.rst").read()
]),
test_suite = "tests",
setup_requires = [
'setuptools',
],
install_requires = [
'docopt >= 0.6.0',
'google-api-python-client >= 1.2',
'httplib2 >= 0.8',
'oauth2client >= 1.1',
'python-dateutil >= 1.5',
'python-gflags >= 2.0',
'python-magic >= 0.4.6',
'retrying >= 1.1.0',
'urllib3 >= 1.5',
],
packages = [
'libgsync',
'libgsync.drive',
'libgsync.options',
'libgsync.sync',
'libgsync.sync.file',
'libgsync.sync.file.local',
'libgsync.sync.file.remote',
],
scripts = [
'bin/gsync',
],
)