aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 5731613fd8c6ba3308ca56f718765623b281400b (plain)
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
26
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='MIT',
    long_description=open('Readme.md').read(),
    long_description_content_type="text/markdown",
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
)