forked from Rhilip/parse-torrent-name
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (28 loc) · 1.12 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
28
29
30
31
import os
import codecs
from setuptools import setup
readme_path = os.path.join(os.path.dirname(__file__), 'README.md')
with codecs.open(readme_path, mode='r', encoding='utf-8') 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='Extract media information from torrent-like filename',
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 '
'information filename filenames file files meaningful'),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Topic :: Text Processing'
]
)