-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (24 loc) · 896 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
25
from distutils.core import setup
setup(
name='catho',
version='0.1dev',
description = 'Catho file catalog manager',
long_description = 'Small command-line program to manage file catalogs.',
url = 'https://github.com/iemejia/catho',
author = 'Ismael Mejia',
maintainer = 'Ismael Mejia',
maintainer_email = '[email protected]',
packages=['catho',],
license='GNU Lesser General Public License (LGPL)',
# long_description=open('README.md').read(),
# classifiers = [
# "Topic :: Multimedia :: Video",
# "Development Status :: 5 - Production/Stable",
# "Environment :: Console",
# "License :: Public Domain",
# "Programming Language :: Python :: 2.6",
# "Programming Language :: Python :: 2.7",
# "Programming Language :: Python :: 3",
# "Programming Language :: Python :: 3.3"
# ],
)