Merge "Cleanup after testcase running" into stable/danube
[sdnvpn.git] / setup.py
1 ##############################################################################
2 # All rights reserved. This program and the accompanying materials
3 # are made available under the terms of the Apache License, Version 2.0
4 # which accompanies this distribution, and is available at
5 # http://www.apache.org/licenses/LICENSE-2.0
6 ##############################################################################
7
8
9 from setuptools import setup, find_packages
10
11
12 setup(
13     name="sdnvpn",
14     version="danube",
15     packages=find_packages(),
16     include_package_data=True,
17     package_data={},
18     url="https://www.opnfv.org")