Skip to content

Commit

Permalink
add required packages to setup
Browse files Browse the repository at this point in the history
  • Loading branch information
ajbalogh committed Jan 12, 2021
1 parent 248050e commit 2aec274
Showing 1 changed file with 22 additions and 24 deletions.
46 changes: 22 additions & 24 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,25 @@
with open(os.path.join(base_dir, 'VERSION')) as fid:
version_number = fid.read()

setup(
name=pkg_name,
version=version_number,
description='The Snappi Open Traffic Generator Python Package',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/open-traffic-generator/snappi',
author='ajbalogh',
author_email='andy.balogh@keysight.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing :: Traffic Generation',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'
],
keywords='snappi testing open traffic generator automation',
include_package_data=True,
packages=find_packages(),
python_requires='>=2.7, <4',
tests_require=['pytest']
)
setup(name=pkg_name,
version=version_number,
description='The Snappi Open Traffic Generator Python Package',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/open-traffic-generator/snappi',
author='ajbalogh',
author_email='andy.balogh@keysight.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha', 'Intended Audience :: Developers',
'Topic :: Software Development :: Testing :: Traffic Generation',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'
],
keywords='snappi testing open traffic generator automation',
include_package_data=True,
packages=find_packages(),
python_requires='>=2.7, <4',
install_requires=['requests', 'pyyaml', 'jsonpath-ng'],
tests_require=['pytest'])

0 comments on commit 2aec274

Please sign in to comment.