forked from BeyondTheClouds/enos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (49 loc) · 1.65 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -
import os
from setuptools import setup, find_packages
from enos.utils.constants import VERSION
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='enos',
version=VERSION,
description='Experimental eNvironment for OpenStack',
url='https://github.com/BeyondTheClouds/enos',
author='discovery',
author_email='discovery-dev@inria.fr',
license='GPL-3.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='OpenStack, Evaluation, Reproducible Research, '
'Grid5000, Chameleon, Vagrant, Virtualbox',
long_description=read('README.rst'),
packages=find_packages(),
install_requires=[
'enoslib>=2.0.0,<2.1.0',
'docopt>=0.6.2,<0.7.0',
# All kolla commands will run inside a dedicated venv. The version is
# unspecified since the use of virtualenv is very basic.
'virtualenv',
# - ReadTheDocs
'GitPython>=2.1.5',
],
extras_require={
'openstack': [
'python-openstackclient',
'python-neutronclient',
'python-blazarclient>=1.1.1'
],
'annotations': [
'influxdb==4.0.0'
]
},
entry_points={'console_scripts': ['enos = enos.cli:main']},
include_package_data=True
)