13 Star 54 Fork 20

AirtestProject / Poco

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 918 Bytes
一键复制 编辑 原始数据 按行查看 历史
= 提交于 2019-03-05 10:17 . 提升版本号到1.0.76
# coding=utf-8
from setuptools import setup, find_packages
def parse_requirements(filename='requirements.txt'):
""" load requirements from a pip requirements file. (replacing from pip.req import parse_requirements)"""
lineiter = (line.strip() for line in open(filename))
return [line for line in lineiter if line and not line.startswith("#")]
setup(
name='pocoui',
version='1.0.76',
keywords="poco, automation test, ui automation",
description='Poco cross-engine UI automated test framework.',
long_description='Poco cross-engine UI automated test framework. 2018 present by NetEase Games',
packages=find_packages(),
include_package_data=True,
install_requires=parse_requirements(),
license='Apache License 2.0',
author='Netease Games',
author_email='lxn3032@corp.netease.com, gzliuxin@corp.netease.com',
url='https://github.com/AirtestProject/Poco',
)
Python
1
https://gitee.com/AirtestProject/Poco.git
git@gitee.com:AirtestProject/Poco.git
AirtestProject
Poco
Poco
master

搜索帮助