Skip to content
Snippets Groups Projects
Commit a96794f4 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

scaffold

parent 924686c5
No related branches found
No related tags found
No related merge requests found
engines:
duplication:
enabled: true
config:
languages:
python:
fixme:
enabled: true
markdownlint:
enabled: true
pep8:
enabled: true
radon:
enabled: true
exclude_paths:
- tests/**
ratings:
paths:
- firanka/**
\ No newline at end of file
[run]
branch=1
include=
firanka/*
omit=
tests/*
......@@ -12,6 +12,7 @@ env/
build/
develop-eggs/
dist/
.idea/
downloads/
eggs/
.eggs/
......
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
script:
- python setup.py nosetests
after_success:
- codeclimate-test-reporter
MIT License
Copyright (c) 2017 SMOK
Copyright (c) 2017 P.W. DMS s.c.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
......
# firanka
[![Build Status](https://travis-ci.org/smok-serwis/firanka.svg)](https://travis-ci.org/smok-serwis/firanka)
[![Test Coverage](https://codeclimate.com/github/smok-serwis/firanka/badges/coverage.svg)](https://codeclimate.com/github/smok-serwis/firanka/coverage)
[![Code Climate](https://codeclimate.com/github/smok-serwis/firanka/badges/gpa.svg)](https://codeclimate.com/github/smok-serwis/firanka)
[![Issue Count](https://codeclimate.com/github/smok-serwis/firanka/badges/issue_count.svg)](https://codeclimate.com/github/smok-serwis/firanka)
[![PyPI version](https://badge.fury.io/py/CoolAMQP.svg)](https://badge.fury.io/py/CoolAMQP)
[![PyPI](https://img.shields.io/pypi/pyversions/CoolAMQP.svg)]()
[![PyPI](https://img.shields.io/pypi/implementation/CoolAMQP.svg)]()
[![PyPI](https://img.shields.io/pypi/wheel/CoolAMQP.svg)]()
[![license](https://img.shields.io/github/license/mashape/apistatus.svg)]()
[metadata]
description-file = README.md
name = firanka
version = 0.1.1a1
license = MIT License
classifiers =
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Operating System :: OS Independent
Development Status :: Development Status :: 1 - Planning
License :: OSI Approved :: MIT License
Topic :: Software Development :: Libraries
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
description = Very fast pure-Python AMQP client
author = DMS Serwis s.c.
author_email = piotrm@dms-serwis.pl
url = https://github.com/smok-serwis/firanka
[pycodestyle]
max-line-length=80
[bdist_wheel]
universal=1
[nosetests]
verbosity=1
detailed-errors=1
with-coverage=1
[isort]
add_imports =
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
\ No newline at end of file
setup.py 0 → 100644
# coding=UTF-8
from setuptools import setup, find_packages
from sai import __version__
setup(
version=__version__,
packages=find_packages(exclude=['tests.*', 'tests']),
python_requires='==2.7.*',
tests_require=['nose', 'mock', 'coverage'],
test_suite='nose.collector',
zip_safe=False
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment