677a2e135eac4b564e674f95aa6f18d2df1700ff
[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'],       # The name of your scipts package
9     package_dir={'eteutils': 'eteutils'} # The location of your scipts package
10 )