blob: 13f1dc20c858d4859954b42d64939e3a68d818d1 [file] [log] [blame]
peustermc89ba382016-07-08 13:46:32 +02001"""
2Copyright (c) 2015 SONATA-NFV
3ALL RIGHTS RESERVED.
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16
17Neither the name of the SONATA-NFV [, ANY ADDITIONAL AFFILIATION]
18nor the names of its contributors may be used to endorse or promote
19products derived from this software without specific prior written
20permission.
21
22This work has been performed in the framework of the SONATA project,
23funded by the European Commission under Grant number 671517 through
24the Horizon 2020 and 5G-PPP programmes. The authors would like to
25acknowledge the contributions of their colleagues of the SONATA
26partner consortium (www.sonata-nfv.eu).
27"""
cgeoffroy9a9bd452016-03-03 19:01:59 +010028from setuptools import setup, find_packages
29
30setup(name='emuvim',
peusterm2fd340a2016-07-14 12:33:47 +020031 version='0.9',
peusterm5877ea22016-05-11 13:44:59 +020032 license='Apache 2.0',
cgeoffroy9a9bd452016-03-03 19:01:59 +010033 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'),
stevenvanrossemdb2f9432016-08-20 00:01:11 +020039 include_package_data=True,
40 package_data= {
stevenvanrossem5b876702017-04-08 13:41:15 +020041 'emuvim.api.sonata': ['*.yml'],
42 'emuvim.dashboard' : ['*.html', 'css/*.css','img/*','js/*.js']
stevenvanrossemdb2f9432016-08-20 00:01:11 +020043 },
cgeoffroy9a9bd452016-03-03 19:01:59 +010044 install_requires=[
45 'pyaml',
peusterma1a5ed02016-03-07 15:29:20 +010046 'zerorpc',
47 'tabulate',
48 'argparse',
49 'networkx',
peusterma4edcd72016-03-07 15:53:33 +010050 'six>=1.9',
peusterma1a5ed02016-03-07 15:29:20 +010051 'ryu',
peusterm47371402016-08-18 15:24:30 +020052 'oslo.config',
peusterme26487b2016-03-08 14:00:21 +010053 'pytest',
54 'Flask',
peustermbdfab7e2016-03-14 16:03:30 +010055 'flask_restful',
stevenvanrossem9cc73602017-01-27 23:37:29 +010056 'docker==2.0.2',
stevenvanrossemc6abf132016-04-14 11:15:58 +020057 'requests',
peustermfa042562016-05-11 14:46:32 +020058 'prometheus_client',
stevenvanrossemca164cf2017-05-03 16:26:01 +020059 'urllib3',
peusterm00199782017-05-17 08:48:12 +020060 'ipaddress',
61 'simplejson'
cgeoffroy9a9bd452016-03-03 19:01:59 +010062 ],
63 zip_safe=False,
64 entry_points={
65 'console_scripts': [
66 'son-emu-cli=emuvim.cli.son_emu_cli:main',
67 ],
68 },
69 setup_requires=['pytest-runner'],
70 tests_require=['pytest'],
71)