forked from torre76/django-googledrive-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.3 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
import codecs
from setuptools import setup, find_packages
long_description = codecs.open('README.rst', "r").read()
setup(
name = "django-googledrive-storage",
version = "1.1.1",
author = "Gian Luca Dalla Torre",
author_email = "[email protected]",
description = ("Storage implementation for Django that interacts with Google Drive"),
license = "LICENSE.txt",
keywords = "django google drive storage googledrive",
url = "https://github.com/torre76/django-googledrive-storage",
download_url = "https://github.com/torre76/django-googledrive-storage/tarball/1.1.0",
packages=find_packages(exclude=["django_googledrive_storage", "gdstorage.tests", "docs"]),
long_description=long_description,
package_data = {
'': ['README.rst'],
},
install_requires=[
"Django >= 1.6",
"google-api-python-client >= 1.2",
"pycrypto >= 2.6.1",
"python-dateutil >=2.2",
"requests >= 2.2.1",
"django-appconf>=0.6",
],
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Django",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2 :: Only"
],
)