my eye

setup.py

# -*- coding: utf-8 -*-
from setuptools import setup

packages = \
['webint_posts', 'webint_posts.templates']

package_data = \
{'': ['*']}

install_requires = \
['microformats>=0.3.5',
 'micropub>=0.0',
 'webint-media>=0.0,<0.1',
 'webint-search>=0.0,<0.1',
 'webint>=0.0']

entry_points = \
{'webapps': ['posts = webint_posts:app']}

setup_kwargs = {
    'name': 'webint-posts',
    'version': '0.0.23',
    'description': 'manage posts on your website',
    'long_description': 'None',
    'author': 'Angelo Gladding',
    'author_email': 'angelo@ragt.ag',
    'maintainer': 'None',
    'maintainer_email': 'None',
    'url': 'https://ragt.ag/code/projects/webint-posts',
    'packages': packages,
    'package_data': package_data,
    'install_requires': install_requires,
    'entry_points': entry_points,
    'python_requires': '>=3.10,<3.11',
}


setup(**setup_kwargs)