-
Notifications
You must be signed in to change notification settings - Fork 0
/
deeru_qiniu_setup.py
44 lines (31 loc) · 1.2 KB
/
deeru_qiniu_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
38
39
40
41
42
43
44
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
with open("README.rst", encoding='utf-8') as f:
long_description = f.read()
setup(
name="deeru-qiniu",
version="1.0.0",
description="deeru七牛插件",
long_description=long_description,
license="GUN V3.0",
url="https://github.com/gojuukaze/deeru-qiniu",
author="gojuukaze",
author_email="[email protected]",
python_requires='>=3.5',
packages=find_packages(include=['deeru_qiniu*', ]),
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Development Status :: 5 - Production/Stable',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)