forked from opencv/opencv-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
92 lines (81 loc) · 2.83 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
from setuptools import setup
from setuptools.dist import Distribution
import pip
import os
import sys
import io
# cv_version.py should be generated by running find_version.py
from cv_version import opencv_version
contrib_build = False
package_name = "opencv-python"
numpy_version = ""
long_description = ""
package_data = {}
contrib = os.getenv('ENABLE_CONTRIB', None)
if contrib is not None:
if int(contrib) == 1:
contrib_build = True
else:
try:
print("Trying to read contrib enable flag from file...")
with open("contrib.enabled") as f:
flag = int(f.read(1))
if flag == 1:
contrib_build = True
except:
pass
# Use different README and package name for contrib build.
if contrib_build:
package_name = "opencv-contrib-python"
with io.open('README_CONTRIB.rst', encoding="utf-8") as f:
long_description = f.read()
else:
with io.open('README.rst', encoding="utf-8") as f:
long_description = f.read()
# Get required numpy version
for package in pip.get_installed_distributions():
if package.key == "numpy":
numpy_version = package.version
if os.name == 'posix':
package_data['cv2'] = ['*.so']
else:
package_data['cv2'] = ['*.pyd', '*.dll']
class BinaryDistribution(Distribution):
""" Forces BinaryDistribution. """
def has_ext_modules(self):
return True
def is_pure(self):
return False
setup(name=package_name,
version=opencv_version,
url='https://github.com/skvark/opencv-python',
license='MIT',
description='Wrapper package for OpenCV python bindings.',
long_description=long_description,
distclass=BinaryDistribution,
packages=['cv2'],
package_data=package_data,
maintainer="Olli-Pekka Heinisuo",
include_package_data=True,
data_files=[("", ["LICENSE.txt", "LICENSE-3RD-PARTY.txt"])],
install_requires="numpy>=%s" % numpy_version,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: C++',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Software Development',
]
)