oxtimelines/setup.py

40 lines
980 B
Python
Raw Permalink Normal View History

# setup.py
# -*- coding: UTF-8 -*-
2023-11-18 15:30:10 +00:00
from setuptools import setup
2016-02-18 14:23:49 +00:00
def get_version():
import subprocess
2017-02-16 16:36:41 +00:00
rev = subprocess.check_output(['git', 'rev-list', 'HEAD', '--count']).decode().strip()
2016-02-18 14:26:24 +00:00
return rev or u'unknown'
2023-11-18 15:30:10 +00:00
setup(name='oxtimelines',
2023-11-18 15:30:10 +00:00
version='0.%s' % get_version(),
scripts=[
'bin/oxtimelines',
],
packages=[
'oxtimelines',
],
2023-11-18 15:30:10 +00:00
install_requires=[
'numpy',
'ox',
'Pillow',
],
author='0x2620',
author_email='0x2620@0x2620.org',
2012-06-11 10:09:29 +00:00
url="https://wiki.0x2620.org/wiki/oxtimelines",
download_url="http://code.0x2620.org/oxtimelines/download",
license="GPLv3",
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'
],
)