forked from ftao/django-upyun-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 780 Bytes
/
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
from setuptools import setup, find_packages
import upyunstorage
setup(
name = 'django-upyun-storage',
version = upyunstorage.__version__,
packages = find_packages(),
author = 'Fei Tao',
author_email = 'filia.tao@gmail.com',
license = 'BSD',
description = 'Upyun storage backend for Django pluggable storage system',
url='https://github.com/ftao/django-upyun-storage',
classifiers = [
'Development Status :: 3 - Alpha',
'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,
)