diff options
author | Monty Taylor <mordred@inaugust.com> | 2013-05-02 14:50:57 -0400 |
---|---|---|
committer | Monty Taylor <mordred@inaugust.com> | 2013-05-02 14:55:43 -0400 |
commit | 84a7dc47e2f666ff11b5816387b7ada2371e48c2 (patch) | |
tree | a0e73b3179dd60f3470b64b4aa733a973325c0e4 /setup.py | |
parent | 112a2f11f865fa896bfbc1fedd3e3553be9d3218 (diff) | |
download | ironic-84a7dc47e2f666ff11b5816387b7ada2371e48c2.tar.gz |
Added project infrastructure needs.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 000000000..1e9882df0 --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +#!/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. + +import setuptools + +setuptools.setup( + setup_requires=['d2to1>=0.2.10,<0.3', 'pbr>=0.5,<0.6'], + d2to1=True) |