forked from IntelLabsEurope/benchmarking-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (18 loc) · 707 Bytes
/
setup.py
File metadata and controls
21 lines (18 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
__author__ = 'vmriccox'
"""
Setuptools script.
"""
from distutils.core import setup
setup(name='experimental_framework',
version='1.0',
description='Framework to automatically run experiments/benchmarks with '
'VMs within OpenStack environments',
author='Intel Research and Development Ireland Ltd',
author_email='vincenzox.m.riccobene@intel.com',
license='Apache 2.0',
url='www.intel.com',
packages=['experimental_framework',
'experimental_framework.benchmarks',
'experimental_framework.packet_generators',
'experimental_framework.libraries',
'experimental_framework.constants'])