diff --git a/.gitignore b/.gitignore index 2e62340..7d2e667 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ target *.iws *.db .coverage +ChangeLog diff --git a/AUTHORS b/AUTHORS index ad0eb8a..7dfae80 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,4 +1,5 @@ Alexander Ignatov +Denis Egorenko Ivan Berezovskiy Matthew Farrellee Nadya Privalova diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..a664f16 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include README.md +graft elements diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..dbb7e1d --- /dev/null +++ b/setup.cfg @@ -0,0 +1,21 @@ +[metadata] +name = savanna-extra +version = 0.3 +summary = Extras for Savanna: elements, hadoop-swiftfs +description-file = README.rst +license = Apache Software License +classifiers = + Intended Audience :: Information Technology + Intended Audience :: System Administrators + License :: OSI Approved :: Apache Software License + Operating System :: POSIX :: Linux +author = OpenStack +author-email = openstack-dev@lists.openstack.org +home-page = https://savanna.readthedocs.org + +[files] +data_files = + share/savanna-elements = elements/* + +[global] +setup-hooks = pbr.hooks.setup_hook diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..2a0786a --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +# Copyright (c) 2013 Hewlett-Packard Development Company, L.P. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or +# implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT +import setuptools + +setuptools.setup( + setup_requires=['pbr>=0.5.21,<1.0'], + pbr=True)