-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
65 lines (56 loc) · 2.05 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
#!/usr/bin/env python3
# git-annex-remote-googledrive Setup
# Copyright (C) 2017 Silvio Ankermann
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of version 3 of the GNU General Public License as published by
# the Free Software Foundation
#
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
from setuptools import setup, find_packages
from codecs import open
import os, tempfile
import versioneer
def readme():
with open('README.md') as f:
return f.read()
setup(
name='git-annex-remote-googledrive',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=['git_annex_remote_googledrive'],
description='git annex special remote for Google Drive',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/Lykos153/git-annex-remote-googledrive',
author='Silvio Ankermann',
author_email='[email protected]',
license='GPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='git-annex remote googledrive',
entry_points = {
'console_scripts': ['git-annex-remote-googledrive=git_annex_remote_googledrive.run:main'],
},
install_requires=[
'annexremote',
'drivelib>=0.1.4',
'gitpython',
'tenacity',
'humanfriendly',
],
)