12345678910111213141516171819202122232425262728 |
- from setuptools import setup
- setup(
- name='gemtextparser',
- version='0.2.1',
- description='A library and CLI tool for parsing or validating text/gemini (aka gemtext).',
- url='https://notabug.org/tinyrabbit/gemtextparser',
- author='Björn Wärmedal',
- author_email='bjorn.warmedal@gmail.com',
- license='MIT License',
- packages=['gemtextparser'],
- install_requires=[],
- classifiers=[
- 'Development Status :: 4 - Beta',
- 'Intended Audience :: End Users/Desktop',
- 'License :: OSI Approved :: MIT License',
- 'Operating System :: POSIX :: Linux',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.9',
- 'Topic :: Internet :: Gemini',
- 'Topic :: Software Development :: Libraries',
- 'Topic :: Utilities',
- 'Typing :: Typed',
- ],
- )
|