-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (45 loc) · 1.67 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (45 loc) · 1.67 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
version = {}
with open("yoti_python_sandbox/version.py") as fp:
exec(fp.read(), version)
setup(
name="yoti-sandbox",
version=version["__version__"],
packages=find_packages(include=["yoti_python_sandbox", "yoti_python_sandbox.*"]),
license="MIT",
description="The Yoti Python Sandbox SDK, providing API support for sandbox services",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/getyoti/yoti-python-sdk-sandbox",
author="Yoti",
author_email="websdk@yoti.com",
install_requires=["yoti>=2.12.0", "cryptography>=2.8.0"],
extras_require={
"dev": [
"pre-commit==2.8.1",
"pytest>=4.6.0",
"pytest-cov>=2.7.1",
"pylint==2.6.0",
"pylint-exit>=1.1.0",
"python-coveralls==2.9.3",
"coverage==5.3",
"mock==4.0.2",
"virtualenv==20.1.0",
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="yoti sdk 2FA multifactor authentication verification identity login register verify 2Factor sandbox",
)