forked from CashStar/applepay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 793 Bytes
/
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
from setuptools import setup
setup(
name="applepay",
version="0.4.0",
author="Taras Halturin",
author_email="[email protected]",
description=("A Python library for decrypting Apple Pay payment tokens."),
license="BSD",
keywords="applepay payment tokens",
url="https://github.com/halturin/applepay",
packages=['applepay', 'tests'],
install_requires=['asn1crypto>=0.21.0', 'cryptography>=1.7.2', 'ecdsa>=0.13', 'pyOpenSSL>=16.2.0'],
setup_requires=['pytest-runner>=2.0,<3dev'],
tests_require=[
'pytest>=3.0.6', 'pytz==2016.10', 'pytest-capturelog>=0.7',
'freezegun>=0.3.8'
],
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
)