-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (21 loc) · 1.01 KB
/
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
25
26
27
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text('utf-8')
setup(
name = 'MovieTool',
long_description = long_description,
long_description_content_type = 'text/markdown',
packages = ['MovieTool'],
version = '3.8.3',
license = 'MIT',
description = "Descarga tus peliculas y series, automatiza todo y crea tu propio Netflix (hecho con fines de aprendizaje) completamente funcional (y con más contenido que el de Netflix) haciendo uso de Plex, Ombi y otras tecnologías más. ⭐",
author = 'ElHaban3ro',
author_email = '[email protected]',
url = 'https://github.com/ElHaban3ro/MovieTool',
keywords = ['python', 'torrent', 'torrent-management', 'movies', 'plex', 'hbo', 'series', 'netflix', 'ombi', 'peliculas'],
classifiers = [
'Programming Language :: Python :: 3.10'
],
install_requires=["pandas==1.4.4", "python-qbittorrent==0.4.2", "feedparser==6.0.10"]
)