mirror of
https://github.com/nikdoof/tvorganise.git
synced 2025-12-11 13:52:16 +00:00
33 lines
814 B
Python
Executable File
33 lines
814 B
Python
Executable File
#!/usr/bin/env python
|
|
#encoding:utf-8
|
|
|
|
from setuptools import setup, find_packages
|
|
setup(
|
|
name = 'tvorganise',
|
|
version='0.1',
|
|
|
|
author='Andrew Williams',
|
|
description='Utilities to verify TV episode filenames and move them into a organise tree. Forked from dbr/Bens checkTvEps toolset',
|
|
url='http://github.com/dbr/checktveps/tree/master',
|
|
license='GPLv2',
|
|
|
|
py_modules = ['tvorganise'],
|
|
entry_points = {
|
|
'console_scripts':['tvorganise = tvorganise:main']
|
|
},
|
|
|
|
classifiers=[
|
|
"Environment :: Console",
|
|
"Intended Audience :: End Users/Desktop",
|
|
"License :: OSI Approved :: GNU General Public License (GPL)",
|
|
"Natural Language :: English",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python",
|
|
"Topic :: Multimedia",
|
|
"Topic :: Utilities"
|
|
],
|
|
|
|
test_suite="tests.all"
|
|
|
|
)
|