| peusterm | c89ba38 | 2016-07-08 13:46:32 +0200 | [diff] [blame] | 1 | """ |
| 2 | Copyright (c) 2015 SONATA-NFV |
| 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 | |
| 17 | Neither the name of the SONATA-NFV [, ANY ADDITIONAL AFFILIATION] |
| 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 | 2fd340a | 2016-07-14 12:33:47 +0200 | [diff] [blame] | 31 | version='0.9', |
| peusterm | 5877ea2 | 2016-05-11 13:44:59 +0200 | [diff] [blame] | 32 | license='Apache 2.0', |
| cgeoffroy | 9a9bd45 | 2016-03-03 19:01:59 +0100 | [diff] [blame] | 33 | description='emuvim is a VIM for the SONATA platform', |
| 34 | url='http://github.com/sonata-emu', |
| 35 | author_email='sonata-dev@sonata-nfv.eu', |
| 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, |
| 40 | package_data= { |
| stevenvanrossem | 5b87670 | 2017-04-08 13:41:15 +0200 | [diff] [blame] | 41 | 'emuvim.api.sonata': ['*.yml'], |
| 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 | 'zerorpc', |
| 47 | 'tabulate', |
| 48 | 'argparse', |
| 49 | 'networkx', |
| peusterm | a4edcd7 | 2016-03-07 15:53:33 +0100 | [diff] [blame] | 50 | 'six>=1.9', |
| peusterm | a1a5ed0 | 2016-03-07 15:29:20 +0100 | [diff] [blame] | 51 | 'ryu', |
| peusterm | 4737140 | 2016-08-18 15:24:30 +0200 | [diff] [blame] | 52 | 'oslo.config', |
| peusterm | e26487b | 2016-03-08 14:00:21 +0100 | [diff] [blame] | 53 | 'pytest', |
| 54 | 'Flask', |
| peusterm | bdfab7e | 2016-03-14 16:03:30 +0100 | [diff] [blame] | 55 | 'flask_restful', |
| stevenvanrossem | 9cc7360 | 2017-01-27 23:37:29 +0100 | [diff] [blame] | 56 | 'docker==2.0.2', |
| 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 | fa04256 | 2016-05-11 14:46:32 +0200 | [diff] [blame] | 59 | 'urllib3' |
| cgeoffroy | 9a9bd45 | 2016-03-03 19:01:59 +0100 | [diff] [blame] | 60 | ], |
| 61 | zip_safe=False, |
| 62 | entry_points={ |
| 63 | 'console_scripts': [ |
| 64 | 'son-emu-cli=emuvim.cli.son_emu_cli:main', |
| 65 | ], |
| 66 | }, |
| 67 | setup_requires=['pytest-runner'], |
| 68 | tests_require=['pytest'], |
| 69 | ) |