-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (29 loc) · 1018 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
26
27
28
29
30
31
32
from setuptools import setup, find_packages
__version__ = None
with open("appsflyer/__init__.py") as f:
exec(f.read()) # nosec
with open("README.md") as f:
long_description = f.read()
setup(
name="appsflyer",
version=__version__,
description="AppsFlyer S2S events API client",
author="Frederico Jordan",
author_email="[email protected]",
url="https://github.com/fredericojordan/appsflyer-python/",
keywords=["appsflyer"],
install_requires=["requests >= 2.0.0"],
extras_require={},
packages=find_packages(exclude=["tests", "tests.*"]),
include_package_data=True,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
long_description=long_description,
long_description_content_type="text/markdown",
)