|
1 | 1 | # -*- coding: utf-8 -*-
|
2 | 2 | from setuptools import setup, find_packages
|
3 | 3 |
|
4 |
| -VERSION = '0.1.2' |
| 4 | +VERSION = '1.0.0' |
5 | 5 | long_description = 'This package contains the tools you need to quickly ' \
|
6 | 6 | 'integrate your Python back-end with Yoti, so that your ' \
|
7 | 7 | 'users can share their identity details with your ' \
|
|
11 | 11 | name='yoti',
|
12 | 12 | version=VERSION,
|
13 | 13 | packages=find_packages(),
|
14 |
| - license='MIT', |
| 14 | + license='OTHER', |
15 | 15 | description='Yoti Python SDK for back-end integration.',
|
16 | 16 | long_description=long_description,
|
17 |
| - url='https://github.com/lampkicking/yoti-sdk-server-python', |
18 |
| - author='', |
19 |
| - author_email='', |
| 17 | + url='https://github.com/getyoti/python', |
| 18 | + author='Yoti', |
| 19 | + |
20 | 20 | install_requires=['cryptography>=1.4', 'protobuf>=3.0.0',
|
21 | 21 | 'requests>=2.0.0', 'future>=0.11.0'],
|
22 | 22 | extras_require={
|
23 | 23 | 'examples': ['Django>=1.9', 'Flask>=0.10'],
|
24 | 24 | },
|
25 | 25 | classifiers=[
|
26 |
| - 'Development Status :: 3 - Alpha', |
27 |
| - 'License :: OSI Approved :: MIT License', |
| 26 | + 'Development Status :: 5 - Production/Stable', |
| 27 | + 'License :: Other/Proprietary License', |
28 | 28 | 'Operating System :: OS Independent',
|
29 | 29 | 'Intended Audience :: Developers',
|
30 | 30 | 'Programming Language :: Python',
|
|
0 commit comments