setup.py 编写

#!/usr/bin/env python
# -*- coding: utf-8 -*-
#    @version : 0.0.1
#    @File    : setpy.py
#    @Time    : 2019-10-17 10:35
#    @Site    :
#    @Software: PyCharm
#    @Author  : KANGXINWEN
#    @Author_email: singbogo@163.com
#    @description:

from io import open
from setuptools import find_packages, setup

with open('./automated/__init__.py', 'r', encoding='utf-8') as f:
    for line in f:
        if line.startswith('__version__'):
            version = line.strip().split('=')[1].strip(' \'"')
            break
    else:
        version = '0.0.1'

with open('./README.rst', 'r', encoding='utf-8') as f:
    readme = f.read()

REQUIRES = [
    "adduserpath-0.4.0",
    "altgraph-0.16.1",
    "appdirs-1.4.3",
    "arrow-0.14.4",
    "asn1crypto-0.24.0",
    "atomicwrites-1.2.1",
    "attrs-18.2.0",
    "bcrypt-3.1.7",
    "binaryornot-0.4.4",
    "bleach-3.1.0",
    "certifi-2018.10.1",
    "cffi-1.12.3",
    "chardet-3.0.4",
    "Click-7.0",
    "colorama-0.4.1",
    "configyaml-0.5.1",
    "cookiecutter-1.6.0",
    "coverage-4.5.4",
    "cryptography-2.7",
    "demjson-2.2.4",
    "Django-2.1.3",
    "docutils-0.15.2",
    "et-xmlfile-1.0.1",
    "exception-0.1.0",
    "Faker-1.0.7",
    "future-0.17.1",
    "hatch-0.20.0",
    "idna-2.7",
    "itchat-1.3.10",
    "jdcal-1.4",
    "Jinja2-2.10.1",
    "jinja2-time-0.2.0",
    "lib-3.0.0",
    "MarkupSafe-1.1.1",
    "more-itertools-5.0.0",
    "netaddr-0.7.19",
    "ntlm-auth-1.3.0",
    "numpy-1.16.1",
    "opencv-python-4.1.0.25",
    "openpyxl-2.5.14",
    "pandas-0.24.1",
    "paramiko-2.6.0",
    "pefile-2019.4.18",
    "pexpect-4.7.0",
    "pika-0.12.0",
    "Pillow-6.0.0",
    "Pillow-PIL-0.1.dev0",
    "pip-18.1",
    "pkginfo-1.5.0.1",
    "pluggy-0.8.1",
    "poyo-0.5.0",
    "ptyprocess-0.6.0",
    "py-1.7.0",
    "pycparser-2.19",
    "pyftpdlib-1.5.5",
    "Pygments-2.4.2",
    "PyInstaller-3.5",
    "PyNaCl-1.3.0",
    "pypiserver-1.3.0",
    "pypng-0.0.19",
    "PyQRCode-1.2.1",
    "pytest-4.1.1",
    "python-dateutil-2.8.0",
    "pytz-2018.7",
    "pywin32-ctypes-0.2.0",
    "pywinrm-0.3.0",
    "PyYAML-3.13",
    "rarfile-3.0",
    "readme-renderer-24.0",
    "requests-2.20.1",
    "requests-ntlm-1.1.0",
    "requests-toolbelt-0.9.1",
    "schedule-0.5.0",
    "selenium-3.141.0",
    "semver-2.8.1",
    "setuptools-39.0.1",
    "six-1.12.0",
    "text-unidecode-1.2",
    "tqdm-4.32.2",
    "twine-1.13.0",
    "urllib3-1.24.1",
    "virtualenv-16.6.2",
    "webencodings-0.5.1",
    "wheel-0.33.4",
    "whichcraft-0.6.0",
    "xlrd-1.2.0",
    "xmltodict-0.12.0",
]

setup(
    name='AutomatedTestPlatform',
    version=version,
    description='Automated test platform',
    long_description=readme,
    author='Kangxinwen',
    author_email='singebogo@163.com',
    maintainer='Kangxinwen',
    maintainer_email='singebogo@163.com',
    url='https://github.com/_/AutomatedTestPlatform',
    license='Apache-2.0',

    keywords=[
        '',
    ],
    packages= find_packages(where='./automated', include=(), exclude=("*.tests", "*.tests.*", "tests.*", "tests")),  # include all packages under automated
    # package_dir={'':'automated'},  # tell distutils packages are under automated
    include_package_data=True,
    # package_data = {'': ['data','conf',]},
    install_requires=REQUIRES,
    tests_require=['coverage', 'pytest'],
    extras_require={
            'ipython': ['ipython==6.21']
    },
    scripts=[
            './automated/bin/main.py',
    ],
    entry_points={
            'console_scirpts': [
                'AutomatedTestPlatform_main = main:main',
            ]
    },

    classifiers=[
        'Development Status :: 3 - Alpha',
        'Intended Audience :: Developers',
        'Topic :: Software Developmemt :: Libraries',
        'License :: OSI Approved :: Apache Software License',
        'Natural Language :: English',
        'Operating system :: OS Independent',
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: Implementation :: CPython',
        'Programming Language :: Python :: Implementation :: PyPy',
    ],
)

 


F:\document\Source\AutoMation\python\AutoMation_Frame\AutomatedTestPlatform>python setup.py sdist
running sdist
running egg_info
writing AutomatedTestPlatform.egg-info\PKG-INFO
writing dependency_links to AutomatedTestPlatform.egg-info\dependency_links.txt
writing entry points to AutomatedTestPlatform.egg-info\entry_points.txt
writing requirements to AutomatedTestPlatform.egg-info\requires.txt
writing top-level names to AutomatedTestPlatform.egg-info\top_level.txt
reading manifest file 'AutomatedTestPlatform.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'AutomatedTestPlatform.egg-info\SOURCES.txt'
running check
creating AutomatedTestPlatform-0.0.1\automated
creating AutomatedTestPlatform-0.0.1\automated\bin
creating AutomatedTestPlatform-0.0.1\AutomatedTestPlatform.egg-info
creating AutomatedTestPlatform-0.0.1\LICENSE
creating AutomatedTestPlatform-0.0.1\automated\src
creating AutomatedTestPlatform-0.0.1\automated\src\conf
creating AutomatedTestPlatform-0.0.1\automated\src\core
creating AutomatedTestPlatform-0.0.1\automated\src\core\api
creating AutomatedTestPlatform-0.0.1\automated\src\core\api\argsparser
creating AutomatedTestPlatform-0.0.1\automated\src\core\api\datatreat
creating AutomatedTestPlatform-0.0.1\automated\src\core\api\dirmanagement
creating AutomatedTestPlatform-0.0.1\automated\src\core\api\error
creating AutomatedTestPlatform-0.0.1\automated\src\core\api\extractor
creating AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb
creating AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\assertions
creating AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle
creating AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle\base
creating AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle\cookies
creating AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle\snapshootcut
creating AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle\wincontorl
creating AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\exception
creating AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\js
creating AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\keywords
creating AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\keywords\coustmer
creating AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\keywords\system
creating AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\model
creating AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\parsing
creating AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\running
creating AutomatedTestPlatform-0.0.1\automated\src\db
creating AutomatedTestPlatform-0.0.1\automated\src\interface
creating AutomatedTestPlatform-0.0.1\automated\src\interface\protocol
creating AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\httpProtocol
creating AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\httpProtocol\HeadFields
creating AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\httpProtocol\httpClient
creating AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\httpProtocol\protocolapi
creating AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq
creating AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\durable
creating AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\exchange
creating AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\mqbase
creating AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\simple
creating AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\processor
creating AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\transfer
creating AutomatedTestPlatform-0.0.1\automated\src\interface\tempalte
creating AutomatedTestPlatform-0.0.1\automated\src\interface\tempalte\tempalteconf
creating AutomatedTestPlatform-0.0.1\automated\src\interface\tempalte\tempalteconf\interfaceprotocols
creating AutomatedTestPlatform-0.0.1\automated\src\interface\tempalte\templateexcel
creating AutomatedTestPlatform-0.0.1\automated\src\interface\tempalte\templateexcel\interfaceprotocols
creating AutomatedTestPlatform-0.0.1\automated\src\lib
creating AutomatedTestPlatform-0.0.1\automated\src\lib\Interpreter
creating AutomatedTestPlatform-0.0.1\automated\src\lib\character
creating AutomatedTestPlatform-0.0.1\automated\src\lib\config
creating AutomatedTestPlatform-0.0.1\automated\src\lib\config\configbase
creating AutomatedTestPlatform-0.0.1\automated\src\lib\config\dbconfig
creating AutomatedTestPlatform-0.0.1\automated\src\lib\config\excelconfig
creating AutomatedTestPlatform-0.0.1\automated\src\lib\config\iniconfig
creating AutomatedTestPlatform-0.0.1\automated\src\lib\config\json
creating AutomatedTestPlatform-0.0.1\automated\src\lib\config\xmlconfig
creating AutomatedTestPlatform-0.0.1\automated\src\lib\config\yamlconfig
creating AutomatedTestPlatform-0.0.1\automated\src\lib\file
creating AutomatedTestPlatform-0.0.1\automated\src\lib\process
creating AutomatedTestPlatform-0.0.1\automated\src\lib\record
creating AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement
creating AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp
creating AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftpbin
creating AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftpconf
creating AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftpcore
creating AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftplib
creating AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\log
creating AutomatedTestPlatform-0.0.1\automated\src\lib\stl
creating AutomatedTestPlatform-0.0.1\automated\src\lib\system
creating AutomatedTestPlatform-0.0.1\automated\src\lib\util
creating AutomatedTestPlatform-0.0.1\automated\src\lib\util\compressutil
creating AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor
creating AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil
creating AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\enumutil
creating AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\genervariety
creating AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\redfinegener
creating AutomatedTestPlatform-0.0.1\automated\src\lib\util\keyboardutil
creating AutomatedTestPlatform-0.0.1\automated\src\lib\util\logutil
creating AutomatedTestPlatform-0.0.1\automated\src\lib\util\mailutil
creating AutomatedTestPlatform-0.0.1\automated\src\lib\util\regexutil
creating AutomatedTestPlatform-0.0.1\automated\src\lib\util\scheduleutil
creating AutomatedTestPlatform-0.0.1\automated\src\lib\util\timeutil
creating AutomatedTestPlatform-0.0.1\automated\src\lib\util\timeutil\timeouts
creating AutomatedTestPlatform-0.0.1\conf
creating AutomatedTestPlatform-0.0.1\data\drivers\py36
creating AutomatedTestPlatform-0.0.1\scripts
creating AutomatedTestPlatform-0.0.1\scripts\cases
creating AutomatedTestPlatform-0.0.1\scripts\moudle
copying files to AutomatedTestPlatform-0.0.1...
copying MANIFEST.in -> AutomatedTestPlatform-0.0.1
copying README.rst -> AutomatedTestPlatform-0.0.1
copying setup.cfg -> AutomatedTestPlatform-0.0.1
copying setup.py -> AutomatedTestPlatform-0.0.1
copying ./automated/bin\main.py -> AutomatedTestPlatform-0.0.1\./automated/bin
copying AutomatedTestPlatform.egg-info\PKG-INFO -> AutomatedTestPlatform-0.0.1\AutomatedTestPlatform.egg-info
copying AutomatedTestPlatform.egg-info\SOURCES.txt -> AutomatedTestPlatform-0.0.1\AutomatedTestPlatform.egg-info
copying AutomatedTestPlatform.egg-info\dependency_links.txt -> AutomatedTestPlatform-0.0.1\AutomatedTestPlatform.egg-info
copying AutomatedTestPlatform.egg-info\entry_points.txt -> AutomatedTestPlatform-0.0.1\AutomatedTestPlatform.egg-info
copying AutomatedTestPlatform.egg-info\requires.txt -> AutomatedTestPlatform-0.0.1\AutomatedTestPlatform.egg-info
copying AutomatedTestPlatform.egg-info\top_level.txt -> AutomatedTestPlatform-0.0.1\AutomatedTestPlatform.egg-info
copying LICENSE\LICENSE-APACHE -> AutomatedTestPlatform-0.0.1\LICENSE
copying automated\__init__.py -> AutomatedTestPlatform-0.0.1\automated
copying automated\src\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src
copying automated\src\conf\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\conf
copying automated\src\conf\globalvar.py -> AutomatedTestPlatform-0.0.1\automated\src\conf
copying automated\src\conf\settings.py -> AutomatedTestPlatform-0.0.1\automated\src\conf
copying automated\src\core\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core
copying automated\src\core\api\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api
copying automated\src\core\api\shell.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api
copying automated\src\core\api\argsparser\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\argsparser
copying automated\src\core\api\argsparser\application.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\argsparser
copying automated\src\core\api\argsparser\argumentparser.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\argsparser
copying automated\src\core\api\datatreat\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\datatreat
copying automated\src\core\api\datatreat\layout.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\datatreat
copying automated\src\core\api\dirmanagement\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\dirmanagement
copying automated\src\core\api\dirmanagement\env.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\dirmanagement
copying automated\src\core\api\dirmanagement\locator.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\dirmanagement
copying automated\src\core\api\dirmanagement\moudle.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\dirmanagement
copying automated\src\core\api\error\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\error
copying automated\src\core\api\error\errors.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\error
copying automated\src\core\api\error\htmlformatters.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\error
copying automated\src\core\api\error\markuputils.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\error
copying automated\src\core\api\extractor\ExcelExtractor.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\extractor
copying automated\src\core\api\extractor\ExtractorABC.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\extractor
copying automated\src\core\api\extractor\RegexExtractor.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\extractor
copying automated\src\core\api\extractor\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\extractor
copying automated\src\core\api\extractor\caseExcelExtactor.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\extractor
copying automated\src\core\api\extractor\jmespathextractor.py -> AutomatedTestPlatform-0.0.1\automated\src\core\api\extractor
copying automated\src\core\seleniumweb\Run.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb
copying automated\src\core\seleniumweb\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb
copying automated\src\core\seleniumweb\assertions\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\assertions
copying automated\src\core\seleniumweb\assertions\assertHTTPCode.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\assertions
copying automated\src\core\seleniumweb\assertions\assertInstanceNone.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\assertions
copying automated\src\core\seleniumweb\commudle\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle
copying automated\src\core\seleniumweb\commudle\eventlistener.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle
copying automated\src\core\seleniumweb\commudle\interruptprocess.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle
copying automated\src\core\seleniumweb\commudle\base\Page.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle\base
copying automated\src\core\seleniumweb\commudle\base\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle\base
copying automated\src\core\seleniumweb\commudle\base\browser_engine.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle\base
copying automated\src\core\seleniumweb\commudle\cookies\LoginOutCheckCode.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle\cookies
copying automated\src\core\seleniumweb\commudle\cookies\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle\cookies
copying automated\src\core\seleniumweb\commudle\cookies\cookies.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle\cookies
copying automated\src\core\seleniumweb\commudle\snapshootcut\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle\snapshootcut
copying automated\src\core\seleniumweb\commudle\snapshootcut\snapshoot.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle\snapshootcut
copying automated\src\core\seleniumweb\commudle\wincontorl\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle\wincontorl
copying automated\src\core\seleniumweb\commudle\wincontorl\wincontorl.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\commudle\wincontorl
copying automated\src\core\seleniumweb\exception\BaseLogException.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\exception
copying automated\src\core\seleniumweb\exception\FoundException.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\exception
copying automated\src\core\seleniumweb\exception\UnSupportBrowserTypeError.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\exception
copying automated\src\core\seleniumweb\exception\UnSupportMethodException.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\exception
copying automated\src\core\seleniumweb\exception\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\exception
copying automated\src\core\seleniumweb\exception\filecreateerror.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\exception
copying automated\src\core\seleniumweb\exception\filenotfound.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\exception
copying automated\src\core\seleniumweb\exception\nonetypeerror.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\exception
copying automated\src\core\seleniumweb\exception\pathnotexist.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\exception
copying automated\src\core\seleniumweb\exception\sheettypeerror.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\exception
copying automated\src\core\seleniumweb\js\ExecuteJs.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\js
copying automated\src\core\seleniumweb\js\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\js
copying automated\src\core\seleniumweb\js\common.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\js
copying automated\src\core\seleniumweb\js\elementcomm.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\js
copying automated\src\core\seleniumweb\js\hideelement.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\js
copying automated\src\core\seleniumweb\js\redelement.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\js
copying automated\src\core\seleniumweb\js\scorllBar.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\js
copying automated\src\core\seleniumweb\keywords\Keyword.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\keywords
copying automated\src\core\seleniumweb\keywords\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\keywords
copying automated\src\core\seleniumweb\keywords\loader.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\keywords
copying automated\src\core\seleniumweb\keywords\coustmer\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\keywords\coustmer
copying automated\src\core\seleniumweb\keywords\coustmer\coustmerkywords.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\keywords\coustmer
copying automated\src\core\seleniumweb\keywords\system\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\keywords\system
copying automated\src\core\seleniumweb\keywords\system\commonkeywords.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\keywords\system
copying automated\src\core\seleniumweb\model\SuitManager.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\model
copying automated\src\core\seleniumweb\model\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\model
copying automated\src\core\seleniumweb\model\metadata.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\model
copying automated\src\core\seleniumweb\model\testcase.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\model
copying automated\src\core\seleniumweb\model\testsuite.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\model
copying automated\src\core\seleniumweb\parsing\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\parsing
copying automated\src\core\seleniumweb\parsing\model.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\parsing
copying automated\src\core\seleniumweb\running\Runner.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\running
copying automated\src\core\seleniumweb\running\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\running
copying automated\src\core\seleniumweb\running\builder.py -> AutomatedTestPlatform-0.0.1\automated\src\core\seleniumweb\running
copying automated\src\db\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\db
copying automated\src\interface\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface
copying automated\src\interface\protocol\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol
copying automated\src\interface\protocol\httpProtocol\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\httpProtocol
copying automated\src\interface\protocol\httpProtocol\HeadFields\HeaderFields.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\httpProtocol\HeadFields
copying automated\src\interface\protocol\httpProtocol\HeadFields\HttpHeadFileds.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\httpProtocol\HeadFields
copying automated\src\interface\protocol\httpProtocol\HeadFields\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\httpProtocol\HeadFields
copying automated\src\interface\protocol\httpProtocol\httpClient\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\httpProtocol\httpClient
copying automated\src\interface\protocol\httpProtocol\httpClient\httpClient.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\httpProtocol\httpClient
copying automated\src\interface\protocol\httpProtocol\httpClient\httpResponse.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\httpProtocol\httpClient
copying automated\src\interface\protocol\httpProtocol\httpClient\httpsClient.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\httpProtocol\httpClient
copying automated\src\interface\protocol\httpProtocol\protocolapi\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\httpProtocol\protocolapi
copying automated\src\interface\protocol\httpProtocol\protocolapi\protocolinterface.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\httpProtocol\protocolapi
copying automated\src\interface\protocol\mq\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq
copying automated\src\interface\protocol\mq\mqConfig.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq
copying automated\src\interface\protocol\mq\durable\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\durable
copying automated\src\interface\protocol\mq\durable\durclient.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\durable
copying automated\src\interface\protocol\mq\durable\durproducter.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\durable
copying automated\src\interface\protocol\mq\exchange\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\exchange
copying automated\src\interface\protocol\mq\exchange\exchangeclient.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\exchange
copying automated\src\interface\protocol\mq\exchange\exchangeproducter.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\exchange
copying automated\src\interface\protocol\mq\mqbase\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\mqbase
copying automated\src\interface\protocol\mq\mqbase\client.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\mqbase
copying automated\src\interface\protocol\mq\mqbase\mqobject.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\mqbase
copying automated\src\interface\protocol\mq\mqbase\producter.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\mqbase
copying automated\src\interface\protocol\mq\simple\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\simple
copying automated\src\interface\protocol\mq\simple\acknowledclient.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\simple
copying automated\src\interface\protocol\mq\simple\simpleclient.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\simple
copying automated\src\interface\protocol\mq\simple\simpleproducter.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\mq\simple
copying automated\src\interface\protocol\processor\PostProcessor.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\processor
copying automated\src\interface\protocol\processor\PreProcessor.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\processor
copying automated\src\interface\protocol\processor\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\processor
copying automated\src\interface\protocol\transfer\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\transfer
copying automated\src\interface\protocol\transfer\httptransfer.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\transfer
copying automated\src\interface\protocol\transfer\protoltransfer.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\protocol\transfer
copying automated\src\interface\tempalte\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\tempalte
copying automated\src\interface\tempalte\tempalteconf\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\tempalte\tempalteconf
copying automated\src\interface\tempalte\tempalteconf\interfaceprotocols\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\tempalte\tempalteconf\interfaceprotocols
copying automated\src\interface\tempalte\tempalteconf\interfaceprotocols\interfaceprotocolsconf.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\tempalte\tempalteconf\interfaceprotocols
copying automated\src\interface\tempalte\templateexcel\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\tempalte\templateexcel
copying automated\src\interface\tempalte\templateexcel\interfaceprotocols\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\tempalte\templateexcel\interfaceprotocols
copying automated\src\interface\tempalte\templateexcel\interfaceprotocols\interfaceprotocolsexcel.py -> AutomatedTestPlatform-0.0.1\automated\src\interface\tempalte\templateexcel\interfaceprotocols
copying automated\src\lib\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib
copying automated\src\lib\asynccall.py -> AutomatedTestPlatform-0.0.1\automated\src\lib
copying automated\src\lib\utils.py -> AutomatedTestPlatform-0.0.1\automated\src\lib
copying automated\src\lib\Interpreter\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\Interpreter
copying automated\src\lib\Interpreter\basicoperation.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\Interpreter
copying automated\src\lib\Interpreter\demo1.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\Interpreter
copying automated\src\lib\Interpreter\importutil.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\Interpreter
copying automated\src\lib\Interpreter\spi.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\Interpreter
copying automated\src\lib\character\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\character
copying automated\src\lib\character\characterformat.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\character
copying automated\src\lib\character\charencoding.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\character
copying automated\src\lib\character\typesFormat.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\character
copying automated\src\lib\config\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config
copying automated\src\lib\config\configbase\FileConfig.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\configbase
copying automated\src\lib\config\configbase\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\configbase
copying automated\src\lib\config\configbase\configInterface.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\configbase
copying automated\src\lib\config\dbconfig\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\dbconfig
copying automated\src\lib\config\dbconfig\dbconfig.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\dbconfig
copying automated\src\lib\config\excelconfig\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\excelconfig
copying automated\src\lib\config\excelconfig\excelconfig.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\excelconfig
copying automated\src\lib\config\excelconfig\excelreader.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\excelconfig
copying automated\src\lib\config\excelconfig\excelwriter.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\excelconfig
copying automated\src\lib\config\iniconfig\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\iniconfig
copying automated\src\lib\config\iniconfig\iniconfig.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\iniconfig
copying automated\src\lib\config\iniconfig\iniread.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\iniconfig
copying automated\src\lib\config\iniconfig\iniwrite.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\iniconfig
copying automated\src\lib\config\json\JsonConfig.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\json
copying automated\src\lib\config\json\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\json
copying automated\src\lib\config\xmlconfig\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\xmlconfig
copying automated\src\lib\config\xmlconfig\casexml.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\xmlconfig
copying automated\src\lib\config\xmlconfig\xmlconfig.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\xmlconfig
copying automated\src\lib\config\xmlconfig\xmlreader.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\xmlconfig
copying automated\src\lib\config\xmlconfig\xmlwriter.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\xmlconfig
copying automated\src\lib\config\yamlconfig\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\yamlconfig
copying automated\src\lib\config\yamlconfig\configyaml.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\yamlconfig
copying automated\src\lib\config\yamlconfig\yamlreader.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\config\yamlconfig
copying automated\src\lib\file\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\file
copying automated\src\lib\file\abcfilepath.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\file
copying automated\src\lib\file\automatedpath.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\file
copying automated\src\lib\file\dir.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\file
copying automated\src\lib\file\earationfilepath.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\file
copying automated\src\lib\file\encodingsniffer.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\file
copying automated\src\lib\file\filebase.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\file
copying automated\src\lib\file\getfunclinenum.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\file
copying automated\src\lib\file\loader.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\file
copying automated\src\lib\process\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\process
copying automated\src\lib\process\dictpprint.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\process
copying automated\src\lib\process\progress.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\process
copying automated\src\lib\record\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\record
copying automated\src\lib\record\vidorecord.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\record
copying automated\src\lib\remotemanagement\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement
copying automated\src\lib\remotemanagement\client.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement
copying automated\src\lib\remotemanagement\order.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement
copying automated\src\lib\remotemanagement\remote.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement
copying automated\src\lib\remotemanagement\remoteunix.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement
copying automated\src\lib\remotemanagement\remotewin.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement
copying automated\src\lib\remotemanagement\server.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement
copying automated\src\lib\remotemanagement\myftp\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp
copying automated\src\lib\remotemanagement\myftp\ftpbin\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftpbin
copying automated\src\lib\remotemanagement\myftp\ftpbin\create_user.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftpbin
copying automated\src\lib\remotemanagement\myftp\ftpbin\myftpc.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftpbin
copying automated\src\lib\remotemanagement\myftp\ftpbin\myftps.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftpbin
copying automated\src\lib\remotemanagement\myftp\ftpconf\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftpconf
copying automated\src\lib\remotemanagement\myftp\ftpconf\settings.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftpconf
copying automated\src\lib\remotemanagement\myftp\ftpcore\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftpcore
copying automated\src\lib\remotemanagement\myftp\ftpcore\logger.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftpcore
copying automated\src\lib\remotemanagement\myftp\ftpcore\main.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftpcore
copying automated\src\lib\remotemanagement\myftp\ftplib\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftplib
copying automated\src\lib\remotemanagement\myftp\ftplib\account.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftplib
copying automated\src\lib\remotemanagement\myftp\ftplib\db.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftplib
copying automated\src\lib\remotemanagement\myftp\ftplib\myftp_client.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftplib
copying automated\src\lib\remotemanagement\myftp\ftplib\myftp_server.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftplib
copying automated\src\lib\remotemanagement\myftp\ftplib\mythread.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftplib
copying automated\src\lib\remotemanagement\myftp\ftplib\process.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\ftplib
copying automated\src\lib\remotemanagement\myftp\log\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\remotemanagement\myftp\log
copying automated\src\lib\stl\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\stl
copying automated\src\lib\stl\dictmaintain.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\stl
copying automated\src\lib\stl\itemlist.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\stl
copying automated\src\lib\stl\message.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\stl
copying automated\src\lib\stl\modelobject.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\stl
copying automated\src\lib\stl\tags.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\stl
copying automated\src\lib\system\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\system
copying automated\src\lib\system\basicinfo.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\system
copying automated\src\lib\system\compat.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\system
copying automated\src\lib\system\match.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\system
copying automated\src\lib\system\network.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\system
copying automated\src\lib\system\normalizing.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\system
copying automated\src\lib\system\platform.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\system
copying automated\src\lib\system\robottypes.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\system
copying automated\src\lib\system\robottypes2.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\system
copying automated\src\lib\system\robottypes3.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\system
copying automated\src\lib\system\setter.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\system
copying automated\src\lib\system\syspath.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\system
copying automated\src\lib\system\unic.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\system
copying automated\src\lib\util\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util
copying automated\src\lib\util\compressutil\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\compressutil
copying automated\src\lib\util\compressutil\compress.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\compressutil
copying automated\src\lib\util\compressutil\decompression.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\compressutil
copying automated\src\lib\util\dataconstructor\DataConstructor.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor
copying automated\src\lib\util\dataconstructor\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor
copying automated\src\lib\util\dataconstructor\loader.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor
copying automated\src\lib\util\dataconstructor\generutil\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil
copying automated\src\lib\util\dataconstructor\generutil\enumutil\IDCard.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\enumutil
copying automated\src\lib\util\dataconstructor\generutil\enumutil\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\enumutil
copying automated\src\lib\util\dataconstructor\generutil\enumutil\enumcar.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\enumutil
copying automated\src\lib\util\dataconstructor\generutil\enumutil\enumcolor.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\enumutil
copying automated\src\lib\util\dataconstructor\generutil\genervariety\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\genervariety
copying automated\src\lib\util\dataconstructor\generutil\genervariety\browsergener.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\genervariety
copying automated\src\lib\util\dataconstructor\generutil\genervariety\cardgenger.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\genervariety
copying automated\src\lib\util\dataconstructor\generutil\genervariety\colorgener.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\genervariety
copying automated\src\lib\util\dataconstructor\generutil\genervariety\datatype.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\genervariety
copying automated\src\lib\util\dataconstructor\generutil\genervariety\emailgener.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\genervariety
copying automated\src\lib\util\dataconstructor\generutil\genervariety\encryptiondecrypt.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\genervariety
copying automated\src\lib\util\dataconstructor\generutil\genervariety\generator.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\genervariety
copying automated\src\lib\util\dataconstructor\generutil\genervariety\netgener.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\genervariety
copying automated\src\lib\util\dataconstructor\generutil\genervariety\peoplegener.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\genervariety
copying automated\src\lib\util\dataconstructor\generutil\genervariety\positiongener.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\genervariety
copying automated\src\lib\util\dataconstructor\generutil\genervariety\textgener.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\genervariety
copying automated\src\lib\util\dataconstructor\generutil\genervariety\timegener.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\genervariety
copying automated\src\lib\util\dataconstructor\generutil\redfinegener\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\redfinegener
copying automated\src\lib\util\dataconstructor\generutil\redfinegener\redifprovider.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\dataconstructor\generutil\redfinegener
copying automated\src\lib\util\keyboardutil\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\keyboardutil
copying automated\src\lib\util\keyboardutil\keyboardevent.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\keyboardutil
copying automated\src\lib\util\keyboardutil\kmouse.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\keyboardutil
copying automated\src\lib\util\logutil\Message.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\logutil
copying automated\src\lib\util\logutil\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\logutil
copying automated\src\lib\util\logutil\consoler.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\logutil
copying automated\src\lib\util\logutil\log.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\logutil
copying automated\src\lib\util\mailutil\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\mailutil
copying automated\src\lib\util\mailutil\mail.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\mailutil
copying automated\src\lib\util\mailutil\mailconfig.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\mailutil
copying automated\src\lib\util\regexutil\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\regexutil
copying automated\src\lib\util\scheduleutil\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\scheduleutil
copying automated\src\lib\util\timeutil\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\timeutil
copying automated\src\lib\util\timeutil\commonusedtime.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\timeutil
copying automated\src\lib\util\timeutil\counter.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\timeutil
copying automated\src\lib\util\timeutil\timer.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\timeutil
copying automated\src\lib\util\timeutil\timeouts\__init__.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\timeutil\timeouts
copying automated\src\lib\util\timeutil\timeouts\ironpython.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\timeutil\timeouts
copying automated\src\lib\util\timeutil\timeouts\jython.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\timeutil\timeouts
copying automated\src\lib\util\timeutil\timeouts\posix.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\timeutil\timeouts
copying automated\src\lib\util\timeutil\timeouts\windows.py -> AutomatedTestPlatform-0.0.1\automated\src\lib\util\timeutil\timeouts
copying conf\Data.yaml -> AutomatedTestPlatform-0.0.1\conf
copying conf\OR.yaml -> AutomatedTestPlatform-0.0.1\conf
copying conf\case_test.yaml -> AutomatedTestPlatform-0.0.1\conf
copying conf\db.ini -> AutomatedTestPlatform-0.0.1\conf
copying conf\gobal.yaml -> AutomatedTestPlatform-0.0.1\conf
copying conf\mail.ini -> AutomatedTestPlatform-0.0.1\conf
copying conf\mq.ini -> AutomatedTestPlatform-0.0.1\conf
copying conf\rmeoter.ini -> AutomatedTestPlatform-0.0.1\conf
copying conf\tox.ini -> AutomatedTestPlatform-0.0.1\conf
copying data\__init__.py -> AutomatedTestPlatform-0.0.1\data
copying data\drivers\HtmlUnitDriver-2.6.jar -> AutomatedTestPlatform-0.0.1\data\drivers
copying data\drivers\IEDriverServer.exe -> AutomatedTestPlatform-0.0.1\data\drivers
copying data\drivers\IEDriverServer_x64_3.6.0.zip -> AutomatedTestPlatform-0.0.1\data\drivers
copying data\drivers\geckodriver.exe -> AutomatedTestPlatform-0.0.1\data\drivers
copying data\drivers\htmlunit-2.35.0-bin.zip -> AutomatedTestPlatform-0.0.1\data\drivers
copying data\drivers\phantomjs.exe -> AutomatedTestPlatform-0.0.1\data\drivers
copying data\drivers\selenium-html-runner-3.141.59.jar -> AutomatedTestPlatform-0.0.1\data\drivers
copying data\drivers\selenium-server-standalone-3.141.59.jar -> AutomatedTestPlatform-0.0.1\data\drivers
copying data\drivers\py36\IEDriverServer.exe -> AutomatedTestPlatform-0.0.1\data\drivers\py36
copying scripts\__init__.py -> AutomatedTestPlatform-0.0.1\scripts
copying scripts\cases\test_case1.ce -> AutomatedTestPlatform-0.0.1\scripts\cases
copying scripts\cases\test_case2.ce -> AutomatedTestPlatform-0.0.1\scripts\cases
copying scripts\moudle\main.ce -> AutomatedTestPlatform-0.0.1\scripts\moudle
Writing AutomatedTestPlatform-0.0.1\setup.cfg
Creating tar archive
removing 'AutomatedTestPlatform-0.0.1' (and everything under it)

F:\document\Source\AutoMation\python\AutoMation_Frame\AutomatedTestPlatform>python setup.py bdist_wheel
running bdist_wheel
running build
running build_scripts
creating build
creating build\scripts-3.6
copying automated\bin\main.py -> build\scripts-3.6
installing to build\bdist.win-amd64\wheel
running install
running install_egg_info
running egg_info
writing AutomatedTestPlatform.egg-info\PKG-INFO
writing dependency_links to AutomatedTestPlatform.egg-info\dependency_links.txt
writing entry points to AutomatedTestPlatform.egg-info\entry_points.txt
writing requirements to AutomatedTestPlatform.egg-info\requires.txt
writing top-level names to AutomatedTestPlatform.egg-info\top_level.txt
reading manifest file 'AutomatedTestPlatform.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'AutomatedTestPlatform.egg-info\SOURCES.txt'
Copying AutomatedTestPlatform.egg-info to build\bdist.win-amd64\wheel\.\AutomatedTestPlatform-0.0.1-py3.6.egg-info
running install_scripts
creating build\bdist.win-amd64\wheel\AutomatedTestPlatform-0.0.1.data
creating build\bdist.win-amd64\wheel\AutomatedTestPlatform-0.0.1.data\scripts
copying build\scripts-3.6\main.py -> build\bdist.win-amd64\wheel\AutomatedTestPlatform-0.0.1.data\scripts
creating build\bdist.win-amd64\wheel\AutomatedTestPlatform-0.0.1.dist-info\WHEEL
creating 'dist\AutomatedTestPlatform-0.0.1-py36-none-any.whl' and adding 'build\bdist.win-amd64\wheel' to it
adding 'AutomatedTestPlatform-0.0.1.data/scripts/main.py'
adding 'AutomatedTestPlatform-0.0.1.dist-info/METADATA'
adding 'AutomatedTestPlatform-0.0.1.dist-info/WHEEL'
adding 'AutomatedTestPlatform-0.0.1.dist-info/entry_points.txt'
adding 'AutomatedTestPlatform-0.0.1.dist-info/top_level.txt'
adding 'AutomatedTestPlatform-0.0.1.dist-info/RECORD'
removing build\bdist.win-amd64\wheel

F:\document\Source\AutoMation\python\AutoMation_Frame\AutomatedTestPlatform>python setup.py bdist_win
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
   or: setup.py --help [cmd1 cmd2 ...]
   or: setup.py --help-commands
   or: setup.py cmd --help

error: invalid command 'bdist_win'

F:\document\Source\AutoMation\python\AutoMation_Frame\AutomatedTestPlatform>python setup.py bdist_wininst
running bdist_wininst
running build
running build_scripts
installing to build\bdist.win-amd64\wininst
running install_egg_info
running egg_info
writing AutomatedTestPlatform.egg-info\PKG-INFO
writing dependency_links to AutomatedTestPlatform.egg-info\dependency_links.txt
writing entry points to AutomatedTestPlatform.egg-info\entry_points.txt
writing requirements to AutomatedTestPlatform.egg-info\requires.txt
writing top-level names to AutomatedTestPlatform.egg-info\top_level.txt
reading manifest file 'AutomatedTestPlatform.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'AutomatedTestPlatform.egg-info\SOURCES.txt'
Copying AutomatedTestPlatform.egg-info to build\bdist.win-amd64\wininst\PURELIB\AutomatedTestPlatform-0.0.1-py3.6.egg-info
running install_scripts
creating build\bdist.win-amd64\wininst\SCRIPTS
copying build\scripts-3.6\main.py -> build\bdist.win-amd64\wininst\SCRIPTS
creating 'C:\Users\KANGXI~1\AppData\Local\Temp\tmpeklrdty1.zip' and adding '.' to it
adding 'PURELIB\AutomatedTestPlatform-0.0.1-py3.6.egg-info\dependency_links.txt'
adding 'PURELIB\AutomatedTestPlatform-0.0.1-py3.6.egg-info\entry_points.txt'
adding 'PURELIB\AutomatedTestPlatform-0.0.1-py3.6.egg-info\PKG-INFO'
adding 'PURELIB\AutomatedTestPlatform-0.0.1-py3.6.egg-info\requires.txt'
adding 'PURELIB\AutomatedTestPlatform-0.0.1-py3.6.egg-info\SOURCES.txt'
adding 'PURELIB\AutomatedTestPlatform-0.0.1-py3.6.egg-info\top_level.txt'
adding 'SCRIPTS\main.py'
removing 'build\bdist.win-amd64\wininst' (and everything under it)

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值