-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (44 loc) · 1.18 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
37
38
39
40
41
42
43
44
45
46
import setuptools
with open("readme.md", "r", encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="deploifai",
author="Deploifai Limited",
description="Deploifai CLI",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/deploifai/cli",
packages=setuptools.find_packages(),
include_package_data=True,
python_requires=">=3.7",
install_requires=[
"click",
"python-dotenv",
"keyring",
"requests",
"click-spinner",
"tqdm",
"azure-identity",
"azure-storage-blob",
"boto3",
"google-auth",
"google-cloud-storage",
"docker",
"InquirerPy",
"pyperclip",
"semver",
"cryptography",
],
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
entry_points={
"console_scripts": [
"deploifai = deploifai.cli:cli",
],
},
)