Skip to content

Commit

Permalink
Merge pull request #380 from cupen/master
Browse files Browse the repository at this point in the history
fix #330
  • Loading branch information
wgbbiao committed Mar 6, 2017
2 parents 1596b58 + fa244b8 commit 8c7c3a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
@@ -1,17 +1,17 @@
#!/usr/bin/env python #!/usr/bin/env python
from io import open
from setuptools import setup from setuptools import setup

# version_tuple = __import__('xadmin').VERSION # version_tuple = __import__('xadmin').VERSION
# version = ".".join([str(v) for v in version_tuple]) # version = ".".join([str(v) for v in version_tuple])


setup( setup(
name='xadmin', name='xadmin',
version='0.6.1', version='0.6.1',
description='Drop-in replacement of Django admin comes with lots of goodies, fully extensible with plugin support, pretty UI based on Twitter Bootstrap.', 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').read(), long_description=open('README.rst', encoding='utf-8').read(),
author='sshwsfc', author='sshwsfc',
author_email='sshwsfc@gmail.com', author_email='sshwsfc@gmail.com',
license=open('LICENSE').read(), license=open('LICENSE', encoding='utf-8').read(),
url='http://www.xadmin.io', url='http://www.xadmin.io',
download_url='http://github.com/sshwsfc/django-xadmin/archive/master.zip', download_url='http://github.com/sshwsfc/django-xadmin/archive/master.zip',
packages=['xadmin', 'xadmin.migrations', 'xadmin.plugins', 'xadmin.templatetags', 'xadmin.views'], packages=['xadmin', 'xadmin.migrations', 'xadmin.plugins', 'xadmin.templatetags', 'xadmin.views'],
Expand Down

0 comments on commit 8c7c3a8

Please sign in to comment.