setup.py 862 B

12345678910111213141516171819202122232425262728
  1. from setuptools import setup
  2. setup(
  3. name='gemtextparser',
  4. version='0.2.1',
  5. description='A library and CLI tool for parsing or validating text/gemini (aka gemtext).',
  6. url='https://notabug.org/tinyrabbit/gemtextparser',
  7. author='Björn Wärmedal',
  8. author_email='bjorn.warmedal@gmail.com',
  9. license='MIT License',
  10. packages=['gemtextparser'],
  11. install_requires=[],
  12. classifiers=[
  13. 'Development Status :: 4 - Beta',
  14. 'Intended Audience :: End Users/Desktop',
  15. 'License :: OSI Approved :: MIT License',
  16. 'Operating System :: POSIX :: Linux',
  17. 'Programming Language :: Python :: 3',
  18. 'Programming Language :: Python :: 3.9',
  19. 'Topic :: Internet :: Gemini',
  20. 'Topic :: Software Development :: Libraries',
  21. 'Topic :: Utilities',
  22. 'Typing :: Typed',
  23. ],
  24. )