20 Star 90 Fork 39

百晓通客栈 / BXT-AR4Python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 838 Bytes
一键复制 编辑 原始数据 按行查看 历史
百晓通客栈KK 提交于 2017-02-12 11:53 . 添加命令行工具
from setuptools import setup, find_packages
exec(open('bar4py/version.py').read())
setup(
name='bar4py',
version=__version__,
author='bxtkezhan-kk',
author_email='bxtkezhan@qq.com',
description='Augmented reality lib for Python3',
url='https://bxtkezhan.github.io/BAR4Py',
license='MIT License',
keywords='AR OpenCV',
packages=find_packages(),
package_data={'bar4py':[
'templates/index.tpl',
'static/js/*.js',
'resources/*.py',
'resources/static/animate/*.js',
'resources/static/camera/*.json',
'resources/static/dictionary/*.json',
'resources/static/marker/*.jpg',
'resources/static/model/*',
]},
install_requires= ['numpy', 'flask'],
entry_points = {
'console_scripts': ['bar4py=bar4py.command:main'],
}
)
Python
1
https://gitee.com/Lindor_L/BXT-AR4Python.git
git@gitee.com:Lindor_L/BXT-AR4Python.git
Lindor_L
BXT-AR4Python
BXT-AR4Python
master

搜索帮助