forked from GoogleCloudPlatform/appengine-python-standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.06 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="appengine-python-standard",
version="1.0.0",
author="Google LLC",
description="Google App Engine services SDK for Python 3",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/GoogleCloudPlatform/appengine-python-standard",
packages=setuptools.find_packages(where="src"),
namespace_packages=["google"],
package_dir={"": "src"},
install_requires=[
"attrs>=21.2.0",
"frozendict>=1.2",
"google-auth>=1.31.0",
"mock>=4.0.3",
"Pillow>=8.3.1",
"protobuf>=3.19.0",
"pytz>=2021.1",
"requests>=2.25.1",
"ruamel.yaml>=0.17.7",
"six>=1.15.0",
"urllib3>=1.26.2,<2",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6, <4",
)