-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
executable file
·37 lines (34 loc) · 1.1 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
import sys
assert sys.version >= '2.5', 'Requires Python v2.5 or above.'
from setuptools import setup
classifiers = [
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: Software Development :: Libraries :: Python Modules',
]
setup(
name='iap_local_receipt',
version='0.2.0',
author='Edwin Fine',
author_email='efine@silentcircle.com',
url='https://github.com/SilentCircle/iap-local-receipt.git',
description='A library for local verification of Apple in-app receipts.',
install_requires=[
'pyasn1',
'pyasn1_modules',
'pyopenssl>=17.0.0',
],
keywords='apple in-app receipt verification',
python_requires='>=2.5',
license='BSD',
classifiers=classifiers,
packages=['iap_local_receipt'],
test_suite='iap_local_receipt.tests',
tests_require=['pep8'],
)