-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (30 loc) · 1.13 KB
/
setup.py
File metadata and controls
executable file
·32 lines (30 loc) · 1.13 KB
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
27
28
29
30
31
32
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup for rsstorrent."""
from setuptools import setup
from rsstorrent import __version__
with open("README.md") as readme:
setup(
name="rsstorrent",
version=__version__,
description="Monitors an RSS-feed and automatically "
"downloads torrents to a specified folder.",
long_description=readme.read(),
license="GPL-3",
author="Peter Asplund",
author_email="azpegath@pm.me",
url="https://github.com/AzP/rsstorrent",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GPL-3 License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
py_modules=["rsstorrent"],
keywords="automation, p2p, network",
install_requires=["python-daemon", "feedparser"],
entry_points={"console_scripts": ["rsstorrent = rsstorrent:do_main_program"]},
)