Mentions légales du service

Skip to content
Snippets Groups Projects
Commit a70c6caa authored by jrbalderrama's avatar jrbalderrama
Browse files

change setup to cfg format

parent b5c2ae7b
No related branches found
No related tags found
No related merge requests found
File moved
# https://caremad.io/posts/2013/07/setup-vs-requirement/
# The '.' specifies to get dependencies from `install_requires` of
# setup.py
.
[metadata]
name = enoslib
version = 1.1.0
keywords = evaluation, reproducible research, Grid5000
license_file = LICENSE.txt
url = https://github.com/beyondtheclouds/enoslib
author = Matthieu Simonin
author_email = matthieu.simonin@inria.fr
long_description = file: README.md
classifier =
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 :: 2.7
[options]
include_package_data = True
packages = find:
setup_requires =
setuptools>=39.0.1
wheel>=0.31.0
install_requires =
ansible>=2.5.0,<2.6.0
jsonschema >= 2.6.0, < 2.7
execo >= 2.6.2, < 2.7
requests>=2.18.0, <2.19
python-vagrant>=0.5.15
netaddr>=0.7,<0.8
python-openstackclient>=3.0.0,<=4.0.0
python-novaclient<10
python-neutronclient==6.3.0
python-blazarclient==1.0.1
[options.packages.find]
exclude =
docs
[bdist_wheel]
python-tag = py27
# -*- coding: utf-8 -
import os
from setuptools import setup, find_packages
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="enoslib",
version="1.1.0",
description="",
url="https://github.com/beyondtheclouds/enoslib",
author="msimonin",
author_email="matthieu.simonin@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 :: 2.7",
],
keywords="Evaluation, Reproducible Research, Grid5000",
long_description=read("README.rst"),
packages=find_packages(),
install_requires=[
"ansible>=2.5.0,<2.6.0",
"jsonschema >= 2.6.0, < 2.7",
"execo >= 2.6.2, < 2.7",
"requests>=2.18.0, <2.19",
"python-vagrant>=0.5.15",
"netaddr>=0.7,<0.8",
# Chameleon provider
"python-openstackclient>=3.0.0,<=4.0.0",
"python-novaclient<10",
"python-neutronclient==6.3.0",
"python-blazarclient==1.0.1",
],
include_package_data=True
)
setup()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment