oxtimeline/setup.py

28 lines
650 B
Python
Raw Normal View History

2009-01-18 08:39:14 +00:00
# setup.py
# -*- coding: UTF-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
import sys
from glob import glob
from distutils.core import setup
2010-10-16 13:48:00 +00:00
setup(name="oxtimeline",
2009-01-18 08:39:14 +00:00
scripts = [
2010-10-14 10:37:14 +00:00
'bin/oxtimeline',
2009-01-18 08:39:14 +00:00
],
packages = [
2010-10-16 13:48:00 +00:00
'oxtimeline',
2009-01-18 08:39:14 +00:00
],
2010-11-03 21:27:29 +00:00
version="1.0",
author="0x2620",
author_email="0x2620@0x2620.org",
description="extract timelines from videos",
2009-01-18 08:39:14 +00:00
classifiers = [
2010-11-03 21:27:29 +00:00
'Development Status :: 5 - Production/Stable',
2009-01-18 08:39:14 +00:00
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
2010-11-03 21:27:29 +00:00
'Topic :: Utilities'
2009-01-18 08:39:14 +00:00
],
)