setup.py 889 B

123456789101112131415161718192021222324252627
  1. #!/usr/bin/env python
  2. from distutils.core import setup
  3. long_description = """TiDB backend for Django"""
  4. setup(
  5. name='django_tidb',
  6. version='2.1.1',
  7. author='Rain Li',
  8. author_email='blacktear23@gmail.com',
  9. url='http://github.com/blacktear23/django_tidb',
  10. download_url='http://github.com/blackear23/django_tidb/archive/2.1.tar.gz',
  11. description='TiDB backend for Django',
  12. long_description=long_description,
  13. keywords=['django', 'tidb'],
  14. packages=['django_tidb', 'django_tidb.tidb'],
  15. license='Apache2',
  16. classifiers=[
  17. 'Development Status :: 5 - Production/Stable',
  18. 'Intended Audience :: Developers',
  19. 'Operating System :: OS Independent',
  20. 'Programming Language :: Python :: 2.7',
  21. 'Programming Language :: Python :: Implementation :: CPython',
  22. 'Topic :: Software Development :: Libraries',
  23. ],
  24. )