-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
108 lines (88 loc) · 2.75 KB
/
setup.py
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# Andre Anjos <[email protected]>
# Mon 16 Apr 08:18:08 2012 CEST
bob_packages = ['bob.core', 'bob.io.base']
from setuptools import setup, find_packages, dist
dist.Distribution(dict(setup_requires=['bob.extension', 'bob.blitz'] + bob_packages))
from bob.blitz.extension import Extension, build_ext
from bob.extension import pkgconfig, find_library
from bob.extension.utils import load_requirements
build_requires = load_requirements()
# Define package version
version = open("version.txt").read().rstrip()
import os
package_dir = os.path.dirname(os.path.realpath(__file__))
target_dir = os.path.join(package_dir, 'bob', 'io', 'video')
packages = [
'boost',
# we require ffmpeg 3.1 and above
'libavformat >= 57.41.100',
'libavcodec >= 57.48.101',
'libavutil >= 55.28.100',
'libswscale >= 4.1.100'
]
define_macros = [('__STDC_CONSTANT_MACROS', None)]
setup(
name='bob.io.video',
version=version,
description='Video I/O support for Bob',
url='http://gitlab.idiap.ch/bob/bob.io.video',
license='BSD',
author='Andre Anjos',
author_email='[email protected]',
long_description=open('README.rst').read(),
packages=find_packages(),
include_package_data=True,
zip_safe=False,
setup_requires = build_requires,
install_requires = build_requires,
ext_modules = [
Extension("bob.io.video.version",
[
"bob/io/video/version.cpp",
],
packages = packages,
boost_modules = ['system'],
bob_packages = bob_packages,
version = version,
define_macros = define_macros,
),
Extension("bob.io.video._library",
[
"bob/io/video/cpp/utils.cpp",
"bob/io/video/cpp/reader.cpp",
"bob/io/video/cpp/writer.cpp",
"bob/io/video/bobskin.cpp",
"bob/io/video/reader.cpp",
"bob/io/video/writer.cpp",
"bob/io/video/file.cpp",
"bob/io/video/main.cpp",
],
packages = packages,
boost_modules = ['system'],
bob_packages = bob_packages,
version = version,
define_macros = define_macros,
),
],
cmdclass = {
'build_ext': build_ext
},
entry_points={
'console_scripts': [
'bob_video_test.py = bob.io.video.script.video_test:main',
],
},
classifiers = [
'Framework :: Bob',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: Plugins',
],
)