forked from figo-connect/python-figo
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
22720f7
commit 2afcb8c
Showing
3 changed files
with
33 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |