From 9281e283cd46598e3ffee853a343f8623c12d5e4 Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Sun, 16 Jan 2022 11:24:24 +0100 Subject: init --- setup.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..1d7400c --- /dev/null +++ b/setup.py @@ -0,0 +1,24 @@ +from distutils.core import setup +import setuptools + +setup( + name='rsstogitea', + version='0.0.0-dev', + author="Jonas Gunz", + description="Create a Gitea Issue for new RSS entries", + packages=['rss_to_gitea'], + entry_points={ + 'console_scripts': ['rsstogitea=rss_to_gitea.main:main'] + }, + install_requires=[ + "requests>=2.25.1" + ], + license='All rights reserved', + long_description=open('README.md').read(), + long_description_content_type="text/markdown", + classifiers=[ + "Programming Language :: Python :: 3", + "Operating System :: OS Independent", + ], +) + -- cgit v1.2.3