Add method to parse URL into piece parts
[testsuite/python-testing-utils.git] / setup.py
1 from setuptools import setup
2
3 setup(
4     name='python-openecomp-eteutils',            # This is the name of your PyPI-package.
5     version='0.2',                          # Update the version number for new releases
6     description='Scripts written to be used during ete testing',    # Info about script
7     install_requires=['dnspython','paramiko', 'pyyaml', 'robotframework', 'deepdiff'], # what we need
8     packages=['eteutils', 'loadtest'],       # The name of your scipts package
9     package_dir={'eteutils': 'eteutils', 'loadtest' : 'loadtest'} # The location of your scipts package
10 )