setup.py 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. #!/usr/bin/env python
  2. import os
  3. from setuptools import setup, find_packages
  4. version = __import__('unicodecsv').__version__
  5. setup(
  6. name='unicodecsv',
  7. version=version,
  8. description="Python2's stdlib csv module is nice, but it doesn't support unicode. This module is a drop-in replacement which *does*.",
  9. long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst'), 'rb').read().decode('utf-8'),
  10. author='Jeremy Dunck',
  11. author_email='jdunck@gmail.com',
  12. url='https://github.com/jdunck/python-unicodecsv',
  13. packages=find_packages(),
  14. tests_require=['unittest2>=0.5.1'],
  15. test_suite='runtests.get_suite',
  16. license='BSD License',
  17. classifiers=['Development Status :: 5 - Production/Stable',
  18. 'Intended Audience :: Developers',
  19. 'License :: OSI Approved :: BSD License',
  20. 'Natural Language :: English',
  21. 'Programming Language :: Python :: 2.6',
  22. 'Programming Language :: Python :: 2.7',
  23. 'Programming Language :: Python :: 3.3',
  24. 'Programming Language :: Python :: 3.4',
  25. 'Programming Language :: Python :: 3.5',
  26. 'Programming Language :: Python :: Implementation :: PyPy',
  27. 'Programming Language :: Python :: Implementation :: CPython',],
  28. )