Skip to content

Commit eddfe03

Browse files
committed
Deploy settings
1 parent 4fb9039 commit eddfe03

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.travis.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -125,26 +125,26 @@ after_success: |
125125
126126
if [[ $ENABLE_CONTRIB == 0 ]]; then
127127
if [[ $ENABLE_HEADLESS == 0 ]]; then
128-
echo "This is default build. Deployment will be done to to PyPI entry opencv-python."
128+
echo "This is default build. Deployment will be done to PyPI entry opencv-python."
129129
else
130-
echo "This is headless contrib build. Deployment will be done to to PyPI entry opencv-python-headless."
130+
echo "This is headless contrib build. Deployment will be done to PyPI entry opencv-python-headless."
131131
fi
132132
else
133133
if [[ $ENABLE_HEADLESS == 0 ]]; then
134-
echo "This is contrib build. Deployment will be done to to PyPI entry opencv-contrib-python."
134+
echo "This is contrib build. Deployment will be done to PyPI entry opencv-contrib-python."
135135
else
136-
echo "This is headless contrib build. Deployment will be done to to PyPI entry opencv-contrib-python-headless."
136+
echo "This is headless contrib build. Deployment will be done to PyPI entry opencv-contrib-python-headless."
137137
fi
138138
fi
139139
140140
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
141141
if [[ $SDIST == 1 ]]; then
142142
pip install twine
143-
twine upload -u ${PYPI_USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/dist/opencv*
143+
twine upload -u ${PYPI_USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/dist/openc*
144144
else
145145
pip install --user twine
146146
pip install --user --upgrade six
147-
twine upload -u ${PYPI_USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/wheelhouse/opencv*
147+
twine upload -u ${PYPI_USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/wheelhouse/openc*
148148
fi
149149
150150
fi
@@ -157,9 +157,9 @@ after_success: |
157157
/usr/bin/python -m pip install --user -U -I twine
158158
159159
if [[ $SDIST == 1 ]]; then
160-
/usr/bin/python -m twine upload -u ${PYPI_USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/dist/opencv*
160+
/usr/bin/python -m twine upload -u ${PYPI_USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/dist/openc*
161161
else
162-
/usr/bin/python -m twine upload -u ${PYPI_USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/wheelhouse/opencv*
162+
/usr/bin/python -m twine upload -u ${PYPI_USER} -p ${PASS} --skip-existing ${TRAVIS_BUILD_DIR}/wheelhouse/openc*
163163
fi
164164
165165
fi
@@ -180,7 +180,7 @@ after_success: |
180180
if [[ $SDIST == 1 ]]; then
181181
az storage blob upload-batch -d ${TRAVIS_COMMIT} -s ${TRAVIS_BUILD_DIR}/dist --pattern *.gz
182182
else
183-
az storage blob upload-batch -d ${TRAVIS_COMMIT} -s ${TRAVIS_BUILD_DIR}/wheelhouse --pattern opencv*.whl
183+
az storage blob upload-batch -d ${TRAVIS_COMMIT} -s ${TRAVIS_BUILD_DIR}/wheelhouse --pattern openc*.whl
184184
fi
185185
fi
186186

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,16 @@ def main():
4545
build_contrib = version["contrib"]
4646
build_headless = version["headless"]
4747

48-
package_name = "opencv-python"
48+
package_name = "opencovis-python"
4949

5050
if build_contrib and not build_headless:
51-
package_name = "opencv-contrib-python"
51+
package_name = "opencovis-contrib-python"
5252

5353
if build_contrib and build_headless:
54-
package_name = "opencv-contrib-python-headless"
54+
package_name = "opencovis-contrib-python-headless"
5555

5656
if build_headless and not build_contrib:
57-
package_name = "opencv-python-headless"
57+
package_name = "opencovis-python-headless"
5858

5959
long_description = io.open("README.md", encoding="utf-8").read()
6060

@@ -70,15 +70,15 @@ def main():
7070
setuptools.setup(
7171
name=package_name,
7272
version=package_version,
73-
url="https://github.com/skvark/opencv-python",
73+
url="https://github.com/GArik/opencv-python",
7474
license="MIT",
7575
description="Wrapper package for OpenCV python bindings.",
7676
long_description=long_description,
7777
long_description_content_type="text/markdown",
7878
packages=packages,
7979
package_data=package_data,
8080
include_package_data=True,
81-
maintainer="Olli-Pekka Heinisuo",
81+
maintainer="Igor Murzov",
8282
ext_modules=EmptyListWithLength(),
8383
install_requires=numpy_version,
8484
python_requires=">=3.6",

0 commit comments

Comments
 (0)