diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..26c4e4c --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +from setuptools import setup, find_packages +import storages + +setup( + name = 'django-storages', + version = storages.__version__, + packages = find_packages(), + + author = 'David Larlet', + author_email = 'david@larlet.fr', + license = 'BSD', + description = 'Support for many storages (S3, MogileFS, etc) in Django.', + url='http://code.welldev.org/django-storages/', + classifiers = [ + 'Development Status :: 5 - Production/Stable', + 'Environment :: Web Environment', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Framework :: Django', + ], + test_suite='tests.main', + zip_safe = False, +) |
