-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (18 loc) · 687 Bytes
/
setup.py
File metadata and controls
22 lines (18 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# encoding: UTF-8
from setuptools import setup
def get_description():
with open("README.rst") as info:
return info.read()
setup(
name="inapppy",
version="2.6",
packages=["inapppy", "inapppy.asyncio"],
install_requires=["aiohttp", "rsa", "requests", "google-api-python-client", "oauth2client", "pyOpenSSL<=24.2.1"],
description="In-app purchase validation library for Apple AppStore and GooglePlay.",
keywords="in-app store purchase googleplay appstore validation",
author="Lukas Šalkauskas",
author_email="halfas.online@gmail.com",
url="https://github.com/dotpot/InAppPy",
long_description=get_description(),
license="MIT",
)