forked from cx-lukas-salkauskas-x/InAppPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (18 loc) · 666 Bytes
/
setup.py
File metadata and controls
22 lines (18 loc) · 666 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.5",
packages=["inapppy", "inapppy.asyncio"],
install_requires=["aiohttp", "rsa", "requests", "google-api-python-client", "oauth2client"],
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",
)