setup.py 958 B

12345678910111213141516171819202122232425262728293031
  1. from setuptools import setup, find_packages
  2. with open('README.rst') as readme:
  3. next(readme)
  4. long_description = ''.join(readme).strip()
  5. setup(
  6. name='html5lib-truncation',
  7. version='0.1.0',
  8. author='Jiangge Zhang',
  9. author_email='tonyseek@gmail.com',
  10. description='Truncating HTML with html5lib filter',
  11. long_description=long_description,
  12. url='https://github.com/tonyseek/html5lib-truncation',
  13. license='MIT',
  14. classifiers=[
  15. 'Development Status :: 3 - Alpha',
  16. 'License :: OSI Approved :: MIT License',
  17. 'Operating System :: OS Independent',
  18. 'Programming Language :: Python',
  19. 'Programming Language :: Python :: 2.7',
  20. 'Programming Language :: Python :: 3.3',
  21. 'Programming Language :: Python :: 3.4',
  22. 'Programming Language :: Python :: Implementation :: PyPy',
  23. ],
  24. packages=find_packages(),
  25. platforms=['Any'],
  26. install_requires=['html5lib'],
  27. )