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
|
|
|
],
|
|
|
|
version="0.1",
|
|
|
|
author="j",
|
|
|
|
author_email="code@0xdb.org",
|
2010-10-16 13:48:00 +00:00
|
|
|
description="extract timeline from videos",
|
2009-01-18 08:39:14 +00:00
|
|
|
classifiers = [
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|