1 Star 0 Fork 10

chobit/DeerU

forked from 五十风/DeerU 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.54 KB
一键复制 编辑 原始数据 按行查看 历史
gojuukaze 提交于 2018-07-16 14:04 . 1.0.0
# -*- coding:utf-8 -*-
__author__ = 'gojuukaze'
from setuptools import setup, find_packages
setup(
name="DeerU",
version="1.0.0",
description="DeerU is a content management system(DeerU 是一个开源博客系统)",
long_description=open("README.rst").read(),
license="GUN V3.0",
url="https://github.com/gojuukaze/DeerU",
author="gojuukaze",
author_email="i@ikaze.uu.me",
python_requires='>=3.5',
install_requires=[
'Django>=2.0.0',
],
zip_safe=False,
include_package_data=True,
packages=find_packages(include=['deeru_cmd*', ]),
entry_points={
'console_scripts': [
'deeru-admin = deeru_cmd.bin.deeru_admin:run'
]
},
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 :: 4 - Beta',
'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',
],
project_urls={
'Documentation': 'https://deeru.readthedocs.io',
'Source': 'https://github.com/gojuukaze/DeerU',
},
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/chobit/DeerU.git
git@gitee.com:chobit/DeerU.git
chobit
DeerU
DeerU
master

搜索帮助