Browse Source

Update README and update setup.py

yulai.li 7 years ago
parent
commit
b615083c15
2 changed files with 6 additions and 5 deletions
  1. 1 1
      README.md
  2. 5 4
      setup.py

+ 1 - 1
README.md

@@ -2,7 +2,7 @@
 
 
 This library is based on django’s mysql backend and change some logic and support features to fit TiDB.
 This library is based on django’s mysql backend and change some logic and support features to fit TiDB.
 
 
-For now this package is tested in python 2.7 and django 1.8 ~ 1.11
+This package is tested in python 2.7 and django 1.8 ~ 1.11
 
 
 # Usage
 # Usage
 
 

+ 5 - 4
setup.py

@@ -6,21 +6,22 @@ long_description = """TiDB backend for Django"""
 
 
 setup(
 setup(
     name='django_tidb',
     name='django_tidb',
-    version='2.0',
+    version='2.1',
     author='Rain Li',
     author='Rain Li',
     author_email='blacktear23@gmail.com',
     author_email='blacktear23@gmail.com',
     url='http://github.com/blacktear23/django_tidb',
     url='http://github.com/blacktear23/django_tidb',
-    download_url='http://github.com/blackear23/django_tidb/archive/2.0.tar.gz',
+    download_url='http://github.com/blackear23/django_tidb/archive/2.1.tar.gz',
     description='TiDB backend for Django',
     description='TiDB backend for Django',
     long_description=long_description,
     long_description=long_description,
     keywords=['django', 'tidb'],
     keywords=['django', 'tidb'],
     packages=['django_tidb', 'django_tidb.tidb'],
     packages=['django_tidb', 'django_tidb.tidb'],
     license='Apache2',
     license='Apache2',
     classifiers=[
     classifiers=[
-        'Development Status :: 4 - Beta',
+        'Development Status :: 5 - Production/Stable',
         'Intended Audience :: Developers',
         'Intended Audience :: Developers',
         'Operating System :: OS Independent',
         'Operating System :: OS Independent',
-        'Programming Language :: Python :: 2',
+        'Programming Language :: Python :: 2.7',
+        'Programming Language :: Python :: Implementation :: CPython',
         'Topic :: Software Development :: Libraries',
         'Topic :: Software Development :: Libraries',
     ],
     ],
 )
 )