~tripleo/python-tuskarclient/master

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Jiri Stransky
  • Date: 2013-07-01 09:01:17 UTC
  • Revision ID: git-v1:c469f3a6561e1a93e66cef0a3c447d8bad03fdcc
Basic project structure

Mostly taken from other OpenStack client projects and adapted for
Tuskar.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2011 OpenStack Foundation
 
2
#
 
3
# Licensed under the Apache License, Version 2.0 (the "License");
 
4
# you may not use this file except in compliance with the License.
 
5
# You may obtain a copy of the License at
 
6
#
 
7
# http://www.apache.org/licenses/LICENSE-2.0
 
8
#
 
9
# Unless required by applicable law or agreed to in writing, software
 
10
# distributed under the License is distributed on an "AS IS" BASIS,
 
11
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
12
# See the License for the specific language governing permissions and
 
13
# limitations under the License.
 
14
 
 
15
import setuptools
 
16
 
 
17
 
 
18
setuptools.setup(
 
19
    setup_requires=[
 
20
        'd2to1>=0.2.10,<0.3',
 
21
        'pbr>=0.5,<0.6'
 
22
    ],
 
23
    d2to1=True
 
24
)