-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated version number and licensing terms
- Loading branch information
1 parent
29991ce
commit 3da57c6
Showing
1 changed file
with
7 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# -*- coding: utf-8 -*- | ||
from setuptools import setup, find_packages | ||
|
||
VERSION = '0.1.2' | ||
VERSION = '1.0.0' | ||
long_description = 'This package contains the tools you need to quickly ' \ | ||
'integrate your Python back-end with Yoti, so that your ' \ | ||
'users can share their identity details with your ' \ | ||
|
@@ -11,20 +11,20 @@ | |
name='yoti', | ||
version=VERSION, | ||
packages=find_packages(), | ||
license='MIT', | ||
license='OTHER', | ||
description='Yoti Python SDK for back-end integration.', | ||
long_description=long_description, | ||
url='https://github.com/lampkicking/yoti-sdk-server-python', | ||
author='', | ||
author_email='', | ||
url='https://github.com/getyoti/python', | ||
author='Yoti', | ||
author_email='[email protected]', | ||
install_requires=['cryptography>=1.4', 'protobuf>=3.0.0', | ||
'requests>=2.0.0', 'future>=0.11.0'], | ||
extras_require={ | ||
'examples': ['Django>=1.9', 'Flask>=0.10'], | ||
}, | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'License :: OSI Approved :: MIT License', | ||
'Development Status :: 5 - Production/Stable', | ||
'License :: Other/Proprietary License', | ||
'Operating System :: OS Independent', | ||
'Intended Audience :: Developers', | ||
'Programming Language :: Python', | ||
|