forked from video-annotator/pythonvideoannotator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 1.16 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (26 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/python2
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import re
version = ''
with open('pythonvideoannotator/__init__.py', 'r') as fd: version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(), re.MULTILINE).group(1)
if not version: raise RuntimeError('Cannot find version information')
requirements = [
'pyforms',
'pyforms_generic_editor>=0.1',
'logging-bootstrap>=0.1',
]
setup(
name='pythonVideoAnnotator',
version=version,
description=""" Python Video Annotator is a standalone application written in python, which provides a GUI for users to analyze and to take notes of events occurred in the videos. """,
author=['Ricardo Ribeiro', 'Carlos Mão de Ferro'],
author_email='ricardojvr@gmail.com, cajomferro@gmail.com',
license='Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>',
url='https://github.com/UmSenhorQualquer/pythonVideoAnnotator',
packages=find_packages(exclude=['contrib', 'docs', 'tests', 'examples', 'deploy', 'reports']),
package_data={'pythonvideoannotator': [
'resources/themes/default/*',
]},
)