-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (26 loc) · 798 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
25
26
27
#coding: utf-8
from setuptools import setup
setup(
version='0.1.1',
name = "plex_missing_episodes",
packages = ['plex_missing_episodes'],
description='Torrent RSS downloader',
author='Oskar Hallström',
author_email='[email protected]',
maintainer='Jakob Hedman',
maintainer_email='[email protected]',
license='GNU GPLv3',
url='https://github.com/spillevink/plex_missing_episodes',
package_dir = {'plex_missing_episodes':'plex_missing_episodes'},
entry_points = {
'console_scripts': [
'plex_missing_episodes = plex_missing_episodes.plex_missing_episodes:main.command',
],
},
install_requires = [
'opster',
'tvdb_api',
'plexapi',
],
long_description = open('README.rst').read(),
)