-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
50 lines (43 loc) · 1.33 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
#!/usr/bin/env python
import os
import re
from distutils.core import setup
DIRNAME = os.path.abspath(os.path.dirname(__file__))
rel = lambda *parts: os.path.abspath(os.path.join(DIRNAME, *parts))
README = open(rel('README.rst')).read()
INIT_PY = open(rel('flask_dropbox', '__init__.py')).read()
VERSION = re.findall("__version__ = '([^']+)'", INIT_PY)[0]
setup(
name='Flask-Dropbox',
version=VERSION,
description='Dropbox Python SDK support for Flask applications.',
long_description=README,
author='Igor Davydenko',
author_email='playpauseandstop@gmail.com',
url='https://github.com/playpauseandstop/Flask-Dropbox',
install_requires=[
'Flask>=0.8',
'dropbox',
],
package_data={
'flask_dropbox': [
'templates/dropbox/*.html'
],
},
packages=[
'flask_dropbox',
],
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Operating System :: OS Independent',
'Topic :: Utilities',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: BSD License',
],
keywords='flask dropbox',
license='BSD License',
)