-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.11 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.11 KB
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
38
from setuptools import find_packages, setup
packages = find_packages(".", include=["doublecloud*"])
__version__ = "0.14.0"
setup(
name="doublecloud",
version=__version__,
description="The Double.Cloud official SDK",
url="https://github.com/doublecloud/python-sdk",
author="DoubleCloud GmbH",
author_email="support@double.cloud",
license="Apache License 2.0",
install_requires=[
"cryptography>=39.0.2",
"grpcio>=1.51.3",
"protobuf==4.25.3",
"grpcio-tools>=1.51.3",
"googleapis-common-protos>=1.58.0",
"pyjwt>=2.6.0",
"requests>=2.28.2",
"six>=1.16.0",
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
tests_require=["pytest"],
setup_requires=["wheel"],
packages=packages,
package_data={"doublecloud": ["*.pyi", "**/*.pyi"]},
zip_safe=False,
)