Skip to content

Commit

Permalink
v0.4 + MIT LICENSE + Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasst committed Feb 6, 2015
1 parent e134471 commit 0269783
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 11 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
@@ -0,0 +1,6 @@
# http://travis-ci.org/elasticsales/cleancat
language: python
python:
- 2.7
script:
- python setup.py test
21 changes: 21 additions & 0 deletions LICENSE
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2015 Elastic Inc. (Close.io)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

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 AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE
2 changes: 2 additions & 0 deletions README.md
@@ -1,6 +1,8 @@
cleancat
========

[![Build Status](https://travis-ci.org/elasticsales/cleancat.svg?branch=master)](https://travis-ci.org/elasticsales/cleancat)

Validation library for Python designed to be used with JSON REST frameworks


Expand Down
16 changes: 5 additions & 11 deletions setup.py
@@ -1,10 +1,4 @@
from setuptools import setup

# Stops exit traceback on tests
try:
import multiprocessing
except:
pass

test_requirements = [
'nose',
Expand All @@ -13,13 +7,13 @@

setup(
name='cleancat',
version='0.3',
version='0.4',
url='http://github.com/elasticsales/cleancat',
license='BSD',
license='MIT',
author='Thomas Steinacher',
author_email='cleancat@thomasst.ch',
author_email='engineering@close.io',
maintainer='Thomas Steinacher',
maintainer_email='cleancat@thomasst.ch',
maintainer_email='engineering@close.io',
description='Validation library for Python designed to be used with JSON REST frameworks',
long_description=__doc__,
packages=[
Expand All @@ -37,7 +31,7 @@
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
Expand Down

0 comments on commit 0269783

Please sign in to comment.