-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
24 lines (22 loc) · 901 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 distutils.core import setup
setup(
name = 'TorrentMediaSearcher',
packages = ['torrentmediasearcher', 'torrentmediasearcher.providers'],
version = '1.0.3',
description = 'Fetches TV and movie magnet links from various torrent providers',
author = 'Christiaan Maks',
author_email = '[email protected]',
url = 'https://github.com/Christilut/TorrentMediaSearcher',
keywords = ['torrent', 'magnet', 'eztv', 'yify', 'tv', 'movie'],
classifiers = [
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Environment :: Other Environment',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Communications :: File Sharing',
],
)