Skip to content

Commit

Permalink
use pbr
Browse files Browse the repository at this point in the history
  • Loading branch information
fricklerhandwerk committed Jun 19, 2017
1 parent 22720f7 commit 2afcb8c
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 24 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# python-figo [![Build Status](https://img.shields.io/travis/figo-connect/python-figo.svg?style=flat-square)](https://travis-ci.org/figo-connect/python-figo) [![PyPi Version](http://img.shields.io/pypi/v/python-figo.svg?style=flat-square)](https://pypi.python.org/pypi/python-figo) [![Code Coverage](https://img.shields.io/codecov/c/github/figo-connect/python-figo.svg?style=flat-square)](https://codecov.io/github/figo-connect/python-figo)


Python bindings for the figo Connect API: http://docs.figo.io

# Usage
Expand Down
32 changes: 31 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,32 @@
[metadata]
name = python-figo
author = figo GmbH
author_email = [email protected]
description-file = README.md
home-page = https://www.figo.io
license = BSD License
classifiers =
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Topic :: Office/Business :: Financial
Topic :: Internet

[files]
packages = figo

[wheel]
universal=1
universal=1

[extras]
webdemo =
Flask
flask_bootstrap
Jinja2
24 changes: 2 additions & 22 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,5 @@
#!/usr/bin/env python

from setuptools import setup

setup(name='python-figo',
version='1.6.1',
description='Library to easily use the API of https://figo.io',
author='figo GmbH',
author_email='[email protected]',
url='https://www.figo.io',
packages=['figo'],
license='BSD License',
classifiers=[
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Office/Business :: Financial',
'Topic :: Internet'
])
setup(setup_requires=['pbr'], pbr=True)

0 comments on commit 2afcb8c

Please sign in to comment.