forked from Perlence/dropbox-via-webdav
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.05 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (35 loc) · 1.05 KB
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
from setuptools import setup
setup(
name='dropbox-via-webdav',
description='Access your Dropbox via WebDAV interface.',
version='0.1',
author='Sviatoslav Abakumov',
author_email='dust.harvesting@gmail.com',
url='https://github.com/Perlence/dropbox-via-webdav/',
platforms=['Windows', 'POSIX', 'Unix', 'MacOS X'],
license='BSD',
py_modules=['dropbox_dav_provider'],
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'get-access-token = get_access_token:main',
],
},
install_requires=[
'arrow',
'dropbox',
'WsgiDAV',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 2',
],
)