setup.py 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. import io
  2. import setuptools
  3. setuptools.setup(
  4. name="elide-text",
  5. version="0.0.1",
  6. url="https://github.com/williambelle/elide-text",
  7. author="William Belle",
  8. author_email="william.belle@gmail.com",
  9. description="A very simple text truncating function",
  10. long_description=io.open('README.md', encoding='utf-8').read(),
  11. long_description_content_type='text/markdown',
  12. license='MIT',
  13. packages=setuptools.find_packages('src'),
  14. package_dir={'': 'src'},
  15. install_requires=[],
  16. python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
  17. zip_safe=False,
  18. classifiers=[
  19. 'Intended Audience :: Developers',
  20. 'License :: OSI Approved :: MIT License',
  21. 'Programming Language :: Python',
  22. 'Programming Language :: Python :: 2',
  23. 'Programming Language :: Python :: 2.7',
  24. 'Programming Language :: Python :: 3',
  25. 'Programming Language :: Python :: 3.5',
  26. 'Programming Language :: Python :: 3.6',
  27. 'Programming Language :: Python :: 3.7',
  28. 'Programming Language :: Python :: 3.8',
  29. ],
  30. )