mirror of
https://github.com/nikdoof/tvorganise.git
synced 2025-12-13 06:42:16 +00:00
Added inital setup.py file
This commit is contained in:
30
setup.py
Normal file
30
setup.py
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
from setuptools import setup, find_packages
|
||||||
|
setup(
|
||||||
|
name = 'checkTvEps',
|
||||||
|
version='0.1',
|
||||||
|
|
||||||
|
author='dbr/Ben',
|
||||||
|
description='A collection of utilties to verify TV episodes match a naming scheme',
|
||||||
|
url='http://github.com/dbr/checktveps/tree/master',
|
||||||
|
license='GPLv2',
|
||||||
|
|
||||||
|
py_modules = ['filename_config', 'checkTvEps', 'checkFilms', 'autoPathTv'],
|
||||||
|
entry_points = {
|
||||||
|
'console_scripts':[
|
||||||
|
'checkTvEps = checkTvEps:main',
|
||||||
|
'checkFilms = checkFilms:main',
|
||||||
|
'autoPathTv = autoPathTv: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"
|
||||||
|
]
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user