bugfix
This commit is contained in:
commit
e5e2044775
0
requirements.txt
Normal file
0
requirements.txt
Normal file
56
setup.py
56
setup.py
@ -1,3 +1,4 @@
|
|||||||
|
<<<<<<< HEAD
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from kivycv.version import __version__
|
from kivycv.version import __version__
|
||||||
try:
|
try:
|
||||||
@ -52,3 +53,58 @@ setup(
|
|||||||
],
|
],
|
||||||
platforms= 'any'
|
platforms= 'any'
|
||||||
)
|
)
|
||||||
|
=======
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from kivycv.version import __version__
|
||||||
|
import codecs
|
||||||
|
try:
|
||||||
|
from setuptools import setup
|
||||||
|
except ImportError:
|
||||||
|
from distutils.core import setup
|
||||||
|
|
||||||
|
# usage:
|
||||||
|
# python setup.py bdist_wininst generate a window executable file
|
||||||
|
# python setup.py bdist_egg generate a egg file
|
||||||
|
# Release information about eway
|
||||||
|
|
||||||
|
description = "kivy opencv related modules"
|
||||||
|
author = "yumoqing"
|
||||||
|
email = "yumoqing@icloud.com"
|
||||||
|
version = __version__
|
||||||
|
depandent_packages = []
|
||||||
|
with codecs.open('./requirements.txt', 'r', 'utf-8') as f:
|
||||||
|
b = f.read()
|
||||||
|
b = ''.join(b.split('\r'))
|
||||||
|
depandent_packages = b.split('\n')
|
||||||
|
|
||||||
|
package_data = {
|
||||||
|
"":[
|
||||||
|
"*.txt"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name="kivycv",
|
||||||
|
ext_modules= [
|
||||||
|
],
|
||||||
|
version=version,
|
||||||
|
|
||||||
|
# uncomment the following lines if you fill them out in release.py
|
||||||
|
description=description,
|
||||||
|
author=author,
|
||||||
|
author_email=email,
|
||||||
|
|
||||||
|
install_requires=depandent_packages,
|
||||||
|
packages=[ 'kivycv' ],
|
||||||
|
package_data=package_data,
|
||||||
|
keywords = [
|
||||||
|
],
|
||||||
|
classifiers = [
|
||||||
|
'Development Status :: 3 - Alpha',
|
||||||
|
'Operating System :: OS Independent',
|
||||||
|
'Programming Language :: Python :: 3.5',
|
||||||
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
||||||
|
],
|
||||||
|
platforms= 'any'
|
||||||
|
)
|
||||||
|
>>>>>>> 46dd7593a6404ee7c8f4c0ad1ad0a8152404d49d
|
||||||
|
Loading…
Reference in New Issue
Block a user