1 Star 2 Fork 0

vlc/xadmin_bugfix12

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.90 KB
一键复制 编辑 原始数据 按行查看 历史
flyskyer 提交于 2019-08-25 15:36 +08:00 . 添加demo
#!/usr/bin/env python
from io import open
from setuptools import setup
# version_tuple = __import__('xadmin').VERSION
# version = ".".join([str(v) for v in version_tuple])
setup(
name='xadmin',
version='2.2',
description='Drop-in replacement of Django admin comes with lots of goodies, fully extensible with plugin support, pretty UI based on Twitter Bootstrap.',
long_description=open('README.rst', encoding='utf-8').read(),
author='sshwsfc',
author_email='sshwsfc@gmail.com',
license=open('LICENSE', encoding='utf-8').read(),
url='http://www.xadmin.io',
download_url='http://github.com/sshwsfc/django-xadmin/archive/master.zip',
packages=['xadmin', 'xadmin.migrations', 'xadmin.plugins', 'xadmin.templatetags', 'xadmin.views'],
include_package_data=True,
install_requires=[
'setuptools',
'django>=2',
'django-crispy-forms>=1.6.0',
'django-reversion>=2.0.0',
'django-formtools>=1.0',
'django-import-export>=0.5.1',
'django-ckeditor>=5.7.0',
'httplib2>=0.9.2',
'future',
'six'
],
extras_require={
'Excel': ['xlwt', 'xlsxwriter'],
'Reversion': ['django-reversion>=2.0.0'],
},
zip_safe=False,
keywords=['admin', 'django', 'xadmin', 'bootstrap'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
"Programming Language :: JavaScript",
'Programming Language :: Python',
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/vlc/xadmin_bugfix12.git
git@gitee.com:vlc/xadmin_bugfix12.git
vlc
xadmin_bugfix12
xadmin_bugfix12
master

搜索帮助