-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
107 lines (98 loc) · 3.68 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#!/usr/bin/env python
# encoding: utf-8
#
# This file is part of jottalib.
#
# jottafs is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# jottafs is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with jottafs. If not, see <http://www.gnu.org/licenses/>.
#
# Copyright 2014-2016 Håvard Gulldahl <[email protected]>
from setuptools import setup
import os
import sys
import os.path
import re
#sys.path.insert(0, './src')
# get metadata (__version__, etc) from module magic
with open(os.path.join('src', 'jottalib', '__init__.py')) as f:
metadata = dict(re.findall("__([a-z]+)__\s*=\s*'([^']+)'", f.read()))
try:
with open('README.txt') as f:
long_desc = f.read()
except:
long_desc = ''
REQUIRES = ['requests',
'requests_toolbelt',
'certifi',
'clint',
'python-dateutil',
'humanize',
'six',
'chardet',]
# see https://pythonhosted.org/setuptools/setuptools.html#declaring-extras-optional-features-with-their-own-dependencies
EXTRAS = {
'Qt': [], # required for qt models
'FUSE': [], # required for jotta-fuse
'monitor': ['watchdog',], # required for jotta-monitor
'scanner': [], # optional for jotta-scanner
}
if sys.platform != 'win32':
# all the stuff that doesnt work on windows
REQUIRES.append('lxml')
EXTRAS['scanner'].append('xattr')
EXTRAS['FUSE'].append('fusepy')
EXTRAS['Qt'].append('python-qt4')
else:
print('WARNING: jottalib requires `lxml`, please get it from http://www.lfd.uci.edu/~gohlke/pythonlibs/')
setup(name='jottalib',
version=metadata['version'],
license='GPLv3',
description='A library and tools to access the JottaCloud API',
long_description=long_desc,
author=u'Håvard Gulldahl',
author_email='[email protected]',
url='https://github.com/havardgulldahl/jottalib',
package_dir={'':'src'},
packages=['jottalib', 'jottalib.contrib'],
install_requires=REQUIRES,
extras_require=EXTRAS,
entry_points={
'console_scripts': [
'jotta-download = jottalib.cli:download',
'jotta-fuse = jottalib.cli:fuse',
'jotta-ls = jottalib.cli:ls',
'jotta-mkdir = jottalib.cli:mkdir',
'jotta-restore = jottalib.cli:restore',
'jotta-rm = jottalib.cli:rm',
'jotta-share = jottalib.cli:share',
'jotta-upload = jottalib.cli:upload',
'jotta-scanner = jottalib.cli:scanner',
'jotta-monitor = jottalib.cli:monitor',
'jotta-cat = jottalib.cli:cat',
]
},
classifiers="""Intended Audience :: Developers
Intended Audience :: End Users/Desktop
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Programming Language :: Python :: 2.7
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: System :: Archiving
Topic :: System :: Archiving :: Backup
Topic :: Utilities""".split('\n'),
)