forked from AirtestProject/Poco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (20 loc) · 918 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 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.75',
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='[email protected], [email protected]',
url='https://github.com/AirtestProject/Poco',
)