-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (58 loc) · 2.08 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
import os
import io
from setuptools import setup, find_packages
# Get the long description from the README file
here = os.path.dirname(__file__)
with io.open(os.path.join(here, 'README.md'), 'r', encoding='utf-8') as f:
long_description = f.read()
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Communications :: File Sharing',
]
setup(
name='dropme',
version='1.1.0',
install_requires=[
'cliff>=2.10.0',
'dropbox>=8.5.0',
'PyYAML>=3.1.0',
],
description='CLI tool for managing Dropbox environment.',
long_description=long_description,
url='https://github.com/tivaliy/dropme',
author='Vitalii Kulanov',
author_email='vitaliy@kulanov.org.ua',
license='MIT',
classifiers=classifiers,
keywords='CLI Dropbox',
packages=find_packages(exclude=['tests']),
include_package_data=True,
entry_points={
'console_scripts': [
'dropme = dropme.app:main',
],
'dropme': [
'cp=dropme.commands.files:FileFolderCopy',
'df=dropme.commands.account:AccountOwnerSpaceUsageShow',
'find=dropme.commands.files:FileFolderSearch',
'get=dropme.commands.files:FileGet',
'ls=dropme.commands.folder:FolderList',
'mkdir=dropme.commands.folder:FolderCreate',
'mv=dropme.commands.files:FileFolderMove',
'put=dropme.commands.files:FilePut',
'restore=dropme.commands.files:FileRestore',
'revs=dropme.commands.files:FileRevisionsList',
'rm=dropme.commands.files:FileFolderDelete',
'status=dropme.commands.files:FileFolderStatusShow',
'whoami=dropme.commands.account:AccountOwnerInfoShow'
],
},
)