Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleX
提交
b1c2768f
P
PaddleX
项目概览
PaddlePaddle
/
PaddleX
通知
138
Star
4
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
43
列表
看板
标记
里程碑
合并请求
5
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleX
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
43
Issue
43
列表
看板
标记
里程碑
合并请求
5
合并请求
5
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
b1c2768f
编写于
3月 28, 2020
作者:
L
LaraStuStu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Create setup.py
上级
8b73920d
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
143 addition
and
0 deletion
+143
-0
DataAnnotation/labelme/setup.py
DataAnnotation/labelme/setup.py
+143
-0
未找到文件。
DataAnnotation/labelme/setup.py
0 → 100644
浏览文件 @
b1c2768f
from
__future__
import
print_function
import
distutils.spawn
import
os.path
from
setuptools
import
find_packages
from
setuptools
import
setup
import
shlex
import
subprocess
import
sys
PY3
=
sys
.
version_info
[
0
]
==
3
PY2
=
sys
.
version_info
[
0
]
==
2
assert
PY3
or
PY2
here
=
os
.
path
.
abspath
(
os
.
path
.
dirname
(
__file__
))
version_file
=
os
.
path
.
join
(
here
,
'labelme'
,
'_version.py'
)
if
PY3
:
import
importlib
version
=
importlib
.
machinery
.
SourceFileLoader
(
'_version'
,
version_file
).
load_module
().
__version__
else
:
assert
PY2
import
imp
version
=
imp
.
load_source
(
'_version'
,
version_file
).
__version__
del
here
install_requires
=
[
'matplotlib'
,
'numpy'
,
'Pillow>=2.8.0'
,
'PyYAML'
,
'qtpy'
,
'termcolor'
,
]
# Find python binding for qt with priority:
# PyQt5 -> PySide2 -> PyQt4,
# and PyQt5 is automatically installed on Python3.
QT_BINDING
=
None
try
:
import
PyQt5
# NOQA
QT_BINDING
=
'pyqt5'
except
ImportError
:
pass
if
QT_BINDING
is
None
:
try
:
import
PySide2
# NOQA
QT_BINDING
=
'pyside2'
except
ImportError
:
pass
if
QT_BINDING
is
None
:
try
:
import
PyQt4
# NOQA
QT_BINDING
=
'pyqt4'
except
ImportError
:
if
PY2
:
print
(
'Please install PyQt5, PySide2 or PyQt4 for Python2.
\n
'
'Note that PyQt5 can be installed via pip for Python3.'
,
file
=
sys
.
stderr
,
)
sys
.
exit
(
1
)
assert
PY3
# PyQt5 can be installed via pip for Python3
install_requires
.
append
(
'PyQt5'
)
QT_BINDING
=
'pyqt5'
del
QT_BINDING
if
sys
.
argv
[
1
]
==
'release'
:
if
not
distutils
.
spawn
.
find_executable
(
'twine'
):
print
(
'Please install twine:
\n\n\t
pip install twine
\n
'
,
file
=
sys
.
stderr
,
)
sys
.
exit
(
1
)
commands
=
[
'python tests/docs_tests/man_tests/test_labelme_1.py'
,
'git tag v{:s}'
.
format
(
version
),
'git push origin master --tag'
,
'python setup.py sdist'
,
'twine upload dist/labelme-{:s}.tar.gz'
.
format
(
version
),
]
for
cmd
in
commands
:
subprocess
.
check_call
(
shlex
.
split
(
cmd
))
sys
.
exit
(
0
)
def
get_long_description
():
with
open
(
'README.md'
)
as
f
:
long_description
=
f
.
read
()
try
:
import
github2pypi
return
github2pypi
.
replace_url
(
slug
=
'wkentaro/labelme'
,
content
=
long_description
)
except
Exception
:
return
long_description
setup
(
name
=
'labelme'
,
version
=
version
,
packages
=
find_packages
(),
description
=
'Image Polygonal Annotation with Python'
,
long_description
=
get_long_description
(),
long_description_content_type
=
'text/markdown'
,
author
=
'Kentaro Wada'
,
author_email
=
'www.kentaro.wada@gmail.com'
,
url
=
'https://github.com/wkentaro/labelme'
,
install_requires
=
install_requires
,
license
=
'GPLv3'
,
keywords
=
'Image Annotation, Machine Learning'
,
classifiers
=
[
'Development Status :: 5 - Production/Stable'
,
'Intended Audience :: Developers'
,
'Natural Language :: English'
,
'Programming Language :: Python'
,
'Programming Language :: Python :: 2'
,
'Programming Language :: Python :: 3'
,
'Programming Language :: Python :: Implementation :: CPython'
,
'Programming Language :: Python :: Implementation :: PyPy'
,
],
package_data
=
{
'labelme'
:
[
'icons/*'
,
'config/*.yaml'
]},
entry_points
=
{
'console_scripts'
:
[
'labelme=labelme.main:main'
,
'labelme_draw_json=labelme.cli.draw_json:main'
,
'labelme_draw_label_png=labelme.cli.draw_label_png:main'
,
'labelme_json_to_dataset=labelme.cli.json_to_dataset:main'
,
'labelme_on_docker=labelme.cli.on_docker:main'
,
],
},
data_files
=
[(
'share/man/man1'
,
[
'docs/man/labelme.1'
])],
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录