forked from ckopanos/django-google-cloud-storage
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
19 lines (17 loc) · 782 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
version = "0.0.2"
setup(
name = "django-google-cloud-storage",
version = version,
license = "GNU GENERAL PUBLIC LICENSE",
packages = ["django_google_cloud_storage"],
description = "Google Cloud Storage file backend for Django",
long_description = open("README.md").read(),
author = "Christos Kopanos, Richard Caceres",
author_email = "ckopanos@redmob.gr, me@rchrd.net",
install_requires = ["GoogleAppEngineCloudStorageClient==1.9.15.0"],
url = "https://github.com/UseAllFive/django-google-cloud-storage/",
download_url = "https://github.com/UseAllFive/django-google-cloud-storage/tarball/" + version,
keywords = ["django", "appengine", "google", "cloud storage"],
classifiers = [],
)