oxtimeline/setup.py

28 lines
650 B
Python

# 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
setup(name="oxtimeline",
scripts = [
'bin/oxtimeline',
],
packages = [
'oxtimeline',
],
version="1.0",
author="0x2620",
author_email="0x2620@0x2620.org",
description="extract timelines from videos",
classifiers = [
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
)