-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
37 lines (34 loc) · 1 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
#!/bin/env python
import os
from distutils.core import setup
name = 'dropboxfs'
version = '0.1'
release = '11'
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 = 'Ben Timby',
author_email = '[email protected]',
maintainer = 'Ben Timby',
maintainer_email = '[email protected]',
url = 'http://github.com/btimby/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',
),
)