
Changed project layout to be more in-line with the existing OpenStack customs. Specifically, the changes include: * docs moved under doc/source/ and build tox target added * licensing note added in all source files concistently * setuptool harness changed to run along with pbr * some manually added text files removed in favor of pbr-generated * stest harness added * test-requirements.txt updated accordingly * existing code PEP8'ed for tests to pass * GitHub legacy removed * Py2 support undeclared Story: 2006608 Task: 36776 Change-Id: I851efb2b7166db16df77617d41c1771562bcc9a2
23 lines
771 B
Python
23 lines
771 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2010-2020 OpenStack Foundation
|
|
#
|
|
# 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>=2.0.0'],
|
|
pbr=True)
|