Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
The project is now pip installable.
* Added setup.py with required packages.
* Added change log.
* Added license.
  • Loading branch information
KayEss committed Jun 26, 2011
1 parent 2dde538 commit 59721b7
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
@@ -0,0 +1,3 @@
2011-06-26 Kirit Saelensminde <kirit@felspar.com>
Made pip installable
Added ChangeLog
23 changes: 23 additions & 0 deletions LICENSE_1_0.txt
@@ -0,0 +1,23 @@
Boost Software License - Version 1.0 - August 17th, 2003

Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute,
execute, and transmit the Software, and to prepare derivative works of the
Software, and to permit third-parties to whom the Software is furnished to
do so, all subject to the following:

The copyright notices in the Software and this entire statement, including
the above license grant, this restriction and the following disclaimer,
must be included in all copies of the Software, in whole or in part, and
all derivative works of the Software, unless such copies or derivative
works are solely in the form of machine-executable object code generated by
a source language processor.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
4 changes: 4 additions & 0 deletions README.markdown
@@ -1,5 +1,9 @@
Automated tools for engaging with server infrastructure on AWS.

To install use:

pip install git+git://github.com/Proteus-tech/profab.git

_This project uses git flow. Don't forget to do `git flow init`_ (use defaults for all options).

# Command line scripts #
Expand Down
29 changes: 29 additions & 0 deletions setup.py
@@ -0,0 +1,29 @@
import os
from setuptools import setup

def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
name = "profab",
version = "0.2",
author = "Proteus Technologies Infrastructure team",
author_email = "infrastructure@proteus-tech.com",
description = ("Automated tools for engaging with server infrastructure on AWS"),
long_description = read('README.markdown'),
license = "Boost Software License - Version 1.0 - August 17th, 2003",
keywords = "devops ec2 fabric boto",
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: DevOps",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Boost Software License - Version 1.0 - August 17th, 2003",
],
packages = ['profab'],
scripts = [
'bin/pf-server-start', 'bin/pf-server-terminate', 'bin/pf-server-upgrade'],
install_requires = ['simplejson', 'fabric', 'boto >= 2.0rc1'],
dependency_links = [
'git://github.com/boto/boto.git'],
)

0 comments on commit 59721b7

Please sign in to comment.