setup.py 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. from setuptools import setup
  2. import textwrap
  3. setup(name='MarkupPy',
  4. version='1.14',
  5. description='An HTML/XML generator',
  6. url='https://github.com/tylerbakke/MarkupPy',
  7. author='Daniel Nogradi',
  8. author_email="nogradi@gmail.com",
  9. long_description=textwrap.dedent("""\
  10. This is MarkupPy - a Python module that attempts to make it easier to generate HTML/XML from a Python program in an intuitive, lightweight, customizable and pythonic way. It works with both python 2 and 3.
  11. The code is in the public domain.
  12. Version: 1.14 as of August 1, 2017.
  13. Please send bug reports, feature requests, enhancement ideas or questions to tylerbakke@gmail.com.
  14. Installation: Run 'pip install MarkupPy" from the terminal.
  15. Documentation and further info is at https://tylerbakke.github.io/MarkupPy/
  16. (Migrated from markup.py)
  17. """),
  18. license="MIT",
  19. packages=['MarkupPy'],
  20. classifiers=[
  21. 'Environment :: Console',
  22. 'Programming Language :: Python :: 2',
  23. 'Programming Language :: Python :: 3'
  24. ],
  25. zip_safe=False)