getting ready for release

updated setup.cfg with sections
setup.cfg with package pbr

Partialy Implements: blueprint ci-updates

Change-Id: Icf48144a32d595478e209ef50ebd38d9f9ee8033
This commit is contained in:
Sean Roberts 2015-05-08 23:51:13 -07:00
parent 538f3c678c
commit dceabb690e
2 changed files with 42 additions and 15 deletions

View File

@ -1,3 +1,40 @@
[metadata]
name = akanda-neutron
version = 2015.1
summary = Akanda API extensions for OpenStack Neutron
description-file =
README.md
author = OpenStack
author-email = openstack-dev@lists.openstack.org
home-page = http://github.com/stackforge/akanda-rug
classifier =
Environment :: OpenStack
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 2.6
[files]
packages =
akanda
akanda.neutron
namespace_packages =
akanda
[global]
setup-hooks =
pbr.hooks.setup_hook
[build_sphinx]
all_files = 1
build-dir = doc/build
source-dir = doc/source
[nosetests]
where = test
verbosity = 2

View File

@ -1,4 +1,5 @@
# Copyright 2014 DreamHost, LLC
# Copyright 2015 Akanda, Inc
#
# Author: DreamHost, LLC
#
@ -15,19 +16,8 @@
# under the License.
from setuptools import setup, find_packages
import setuptools
setup(
name='akanda-neutron',
version='0.1.4',
description='OpenStack L3 User-Facing REST API for Neutron',
author='Akanda',
url='http://github.com/stackforge/akanda-neutron',
license='BSD',
install_requires=[],
namespace_packages=['akanda'],
packages=find_packages(exclude=['test', 'smoke']),
include_package_data=True,
zip_safe=False,
)
setuptools.setup(
setup_requires=['pbr'],
pbr=True)