blob: 1925002ea3f60f523a3583a4543832158b4ccd7a [file] [log] [blame]
Joshua Hesketh4fd585f2013-07-29 11:50:58 +10001#!/usr/bin/env python
Joshua Hesketh39a0fee2013-07-31 12:00:53 +10002#
3# Copyright 2013 Rackspace Australia
4#
5# Licensed under the Apache License, Version 2.0 (the "License"); you may
6# not use this file except in compliance with the License. You may obtain
7# a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14# License for the specific language governing permissions and limitations
15# under the License.
16
Joshua Hesketh4fd585f2013-07-29 11:50:58 +100017
18import os
19from setuptools import setup
20
21# Utility function to read the README file.
22# Used for the long_description. It's nice, because now 1) we have a top level
23# README file and 2) it's easier to type in the README file than to put a raw
24# string in below ...
25def read(fname):
26 return open(os.path.join(os.path.dirname(__file__), fname)).read()
27
28setup(
29 name = "turbo-hipster",
30 version = "0.0.1",
31 author = "Joshua Hesketh",
32 author_email = "josh@nitrotech.org",
33 description = ("A set of CI tools for openstack."),
34 license = "GPLv2",
35 keywords = "",
36 url = "https://github.com/rcbau/turbo-hipster",
37 packages=['turbo_hipster', 'tests'],
38 long_description=read('README.md'),
39 classifiers=[
40 ],
41)