-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
27 lines (26 loc) · 1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from distutils.core import setup
setup(
name='unit-python-sdk',
packages=['unit', 'unit.api', 'unit.models', 'unit.utils'],
version="1.0.1",
license='Mozilla Public License 2.0',
description='This library provides a python wrapper to http://unit.co API. See https://docs.unit.co/',
author='unit.co',
author_email='dev@unit.co',
url='https://github.com/unit-finance/unit-python-sdk',
download_url='https://github.com/unit-finance/unit-python-sdk.git',
keywords=['unit', 'finance', 'banking',
'banking-as-a-service', 'API', 'SDK'],
install_requires=[
'requests', 'backoff', 'typing_extensions'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)