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
|
|
|
|
|
|
|
|
setup(name="oxtools",
|
|
|
|
scripts = [
|
2010-09-17 15:43:01 +00:00
|
|
|
'bin/oxposter',
|
2010-10-14 10:37:14 +00:00
|
|
|
'bin/oxtimeline',
|
2009-01-18 08:39:14 +00:00
|
|
|
],
|
|
|
|
packages = [
|
|
|
|
'oxgst',
|
2010-09-17 14:40:10 +00:00
|
|
|
'oximage',
|
2009-01-18 08:39:14 +00:00
|
|
|
],
|
|
|
|
package_data = {
|
2010-09-17 14:40:10 +00:00
|
|
|
'oximage': ['data/*.png', 'data/*.ttf'],
|
2009-01-18 08:39:14 +00:00
|
|
|
},
|
|
|
|
version="0.1",
|
|
|
|
author="j",
|
|
|
|
author_email="code@0xdb.org",
|
|
|
|
description="commandline tools and python api to extract information from movies",
|
|
|
|
classifiers = [
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|