forked from halturin/applepay
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
25 lines (24 loc) · 872 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
25
from __future__ import absolute_import
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=[], # Please do not depend on setup.py to install other dependencies for you, that is why we have requirements.txt
setup_requires=['pytest-runner>=2.0,<3dev'],
tests_require=[
'pytest>=3.0.6', 'pytz==2016.10', 'pytest-capturelog>=0.7',
'freezegun>=0.3.8', 'six'
],
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
)