forked from btimby/fs-dropbox
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (34 loc) · 1020 Bytes
/
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
#!/usr/bin/env python
import os
from setuptools import setup
name = 'dropboxfs'
version = '0.4.2'
release = '0'
versrel = version + '-' + release
readme = os.path.join(os.path.dirname(__file__), 'README.rst')
long_description = file(readme).read()
setup(
name=name,
version=versrel,
description='A PyFilesystem backend for the Dropbox API.',
long_description=long_description,
requires=[
'fs',
'dropbox',
],
author='SmartFile',
author_email='tcunningham@smartfile.com',
maintainer='Travis Cunningham',
maintainer_email='tcunningham@smartfile.com',
url='http://github.com/smartfile/fs-dropbox/',
license='GPLv3',
py_modules=['dropboxfs'],
package_data={'': ['README.rst']},
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
),
)