| peusterm | c89ba38 | 2016-07-08 13:46:32 +0200 | [diff] [blame] | 1 | """ |
| peusterm | d7cbd21 | 2017-09-07 08:55:14 +0200 | [diff] [blame] | 2 | Copyright (c) 2015 SONATA-NFV and Paderborn University |
| peusterm | c89ba38 | 2016-07-08 13:46:32 +0200 | [diff] [blame] | 3 | ALL RIGHTS RESERVED. |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | |
| peusterm | d7cbd21 | 2017-09-07 08:55:14 +0200 | [diff] [blame] | 17 | Neither the name of the SONATA-NFV, Paderborn University |
| peusterm | c89ba38 | 2016-07-08 13:46:32 +0200 | [diff] [blame] | 18 | nor the names of its contributors may be used to endorse or promote |
| 19 | products derived from this software without specific prior written |
| 20 | permission. |
| 21 | |
| 22 | This work has been performed in the framework of the SONATA project, |
| 23 | funded by the European Commission under Grant number 671517 through |
| 24 | the Horizon 2020 and 5G-PPP programmes. The authors would like to |
| 25 | acknowledge the contributions of their colleagues of the SONATA |
| 26 | partner consortium (www.sonata-nfv.eu). |
| 27 | """ |
| cgeoffroy | 9a9bd45 | 2016-03-03 19:01:59 +0100 | [diff] [blame] | 28 | from setuptools import setup, find_packages |
| 29 | |
| 30 | setup(name='emuvim', |
| peusterm | d7cbd21 | 2017-09-07 08:55:14 +0200 | [diff] [blame] | 31 | version='1.0', |
| peusterm | 5877ea2 | 2016-05-11 13:44:59 +0200 | [diff] [blame] | 32 | license='Apache 2.0', |
| peusterm | a58c6df | 2017-09-14 11:06:01 +0200 | [diff] [blame] | 33 | description='vim-emu: A NFV multi-PoP emulation platform', |
| 34 | url='https://osm.etsi.org/gitweb/?p=osm/vim-emu.git', |
| 35 | author_email='manuel@peuster.de', |
| cgeoffroy | 9a9bd45 | 2016-03-03 19:01:59 +0100 | [diff] [blame] | 36 | package_dir={'': 'src'}, |
| 37 | # packages=find_packages('emuvim', exclude=['*.test', '*.test.*', 'test.*', 'test']), |
| 38 | packages=find_packages('src'), |
| stevenvanrossem | db2f943 | 2016-08-20 00:01:11 +0200 | [diff] [blame] | 39 | include_package_data=True, |
| peusterm | d7cbd21 | 2017-09-07 08:55:14 +0200 | [diff] [blame] | 40 | package_data={ |
| stevenvanrossem | 5b87670 | 2017-04-08 13:41:15 +0200 | [diff] [blame] | 41 | 'emuvim.api.sonata': ['*.yml'], |
| peusterm | d7cbd21 | 2017-09-07 08:55:14 +0200 | [diff] [blame] | 42 | 'emuvim.dashboard': ['*.html', 'css/*.css', 'img/*', 'js/*.js'] |
| stevenvanrossem | db2f943 | 2016-08-20 00:01:11 +0200 | [diff] [blame] | 43 | }, |
| cgeoffroy | 9a9bd45 | 2016-03-03 19:01:59 +0100 | [diff] [blame] | 44 | install_requires=[ |
| 45 | 'pyaml', |
| peusterm | a1a5ed0 | 2016-03-07 15:29:20 +0100 | [diff] [blame] | 46 | 'tabulate', |
| 47 | 'argparse', |
| peusterm | 0911b55 | 2017-09-22 08:47:08 +0200 | [diff] [blame] | 48 | 'networkx==1.11', |
| peusterm | a4edcd7 | 2016-03-07 15:53:33 +0100 | [diff] [blame] | 49 | 'six>=1.9', |
| peusterm | a1a5ed0 | 2016-03-07 15:29:20 +0100 | [diff] [blame] | 50 | 'ryu', |
| peusterm | 4737140 | 2016-08-18 15:24:30 +0200 | [diff] [blame] | 51 | 'oslo.config', |
| peusterm | e26487b | 2016-03-08 14:00:21 +0100 | [diff] [blame] | 52 | 'pytest', |
| 53 | 'Flask', |
| peusterm | bdfab7e | 2016-03-14 16:03:30 +0100 | [diff] [blame] | 54 | 'flask_restful', |
| stevenvanrossem | 9cc7360 | 2017-01-27 23:37:29 +0100 | [diff] [blame] | 55 | 'docker==2.0.2', |
| peusterm | 49d96c8 | 2017-07-20 12:39:11 +0200 | [diff] [blame] | 56 | 'urllib3==1.21.1', |
| stevenvanrossem | c6abf13 | 2016-04-14 11:15:58 +0200 | [diff] [blame] | 57 | 'requests', |
| peusterm | fa04256 | 2016-05-11 14:46:32 +0200 | [diff] [blame] | 58 | 'prometheus_client', |
| peusterm | 0019978 | 2017-05-17 08:48:12 +0200 | [diff] [blame] | 59 | 'ipaddress', |
| 60 | 'simplejson' |
| cgeoffroy | 9a9bd45 | 2016-03-03 19:01:59 +0100 | [diff] [blame] | 61 | ], |
| 62 | zip_safe=False, |
| 63 | entry_points={ |
| 64 | 'console_scripts': [ |
| peusterm | a58c6df | 2017-09-14 11:06:01 +0200 | [diff] [blame] | 65 | 'vim-emu=emuvim.cli.son_emu_cli:main', |
| cgeoffroy | 9a9bd45 | 2016-03-03 19:01:59 +0100 | [diff] [blame] | 66 | ], |
| 67 | }, |
| 68 | setup_requires=['pytest-runner'], |
| 69 | tests_require=['pytest'], |
| peusterm | d7cbd21 | 2017-09-07 08:55:14 +0200 | [diff] [blame] | 70 | ) |