forked from divijbindlish/parse-torrent-name
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
de1a824
commit 3f4607f
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import os | ||
from setuptools import setup | ||
|
||
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f: | ||
description = f.read() | ||
|
||
setup( | ||
name='parse-torrent-name', | ||
version=__import__('ptn').__version__, | ||
author=__import__('ptn').__author__, | ||
author_email=__import__('ptn').__email__, | ||
license=__import__('ptn').__license__, | ||
url='https://github.com/divijbindlish/parse-torrent-name', | ||
description='Parse torrent name of a movie or TV show', | ||
long_description=description, | ||
packages=['PTN'], | ||
keywords=('parse parser torrent torrents name names proper rename ' | ||
'movie movies tv show shows series extract find quality ' | ||
'group codec audio resolution title season episode year ') | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
'Topic :: Text Processing' | ||
] | ||
|
||
) |