forked from CakesTwix/Toloka2MediaServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 765 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(
name="toloka2MediaServer",
version="0.2.4",
description="Addon to facilitate locating and adding TV series/anime torrents from Toloka/Hurtom with standardized naming for Sonarr/Plex/Jellyfin integration.",
url="https://github.com/CakesTwix/toloka2MediaServer",
packages=find_packages(),
include_package_data=True,
package_data={
'toloka2MediaServer': ['data/*'],
},
entry_points={
'console_scripts': [
'toloka2MediaServer=toloka2MediaServer.main:main',
],
},
install_requires=[
'transmission_rpc',
'qbittorrent-api',
'requests',
'toloka2python @ git+https://github.com/CakesTwix/toloka2python'
]
)