forked from waenwj/django-aliyun-oss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 903 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
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# author: xiLin.ding
from setuptools import setup, find_packages
setup(
name='django-aliyun-oss',
version='0.2',
packages=find_packages(),
author='WANG Jian',
author_email='[email protected]',
url='https://github.com/waenwj/django-aliyun-oss/',
description='django aliyun oss backend',
long_description=open('README.md').read(),
license='Apache2',
requires=[
'Django',
#'alioss',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: System :: Installation/Setup'
],
include_package_data=True,
zip_safe=False
)