1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
from distutils.core import setup
import setuptools
setup(
name='rsstogitea',
version='0.1.0',
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",
"pyyaml"
],
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",
],
)
|