-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 1.02 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (27 loc) · 1.02 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
from setuptools import find_packages, setup
def read_file(file_name: str) -> str:
with open(file_name) as fo:
return fo.read().strip()
setup(
name="cloudshell-cp-azure",
url="http://www.qualisystems.com/",
author="QualiSystems",
author_email="info@qualisystems.com",
packages=find_packages(),
install_requires=read_file("requirements.txt"),
tests_require=read_file("test_requirements.txt"),
python_requires="~=3.7",
version=read_file("version.txt"),
package_data={"": ["*.txt"]},
description=(
"This Shell enables setting up Azure as a cloud provider in CloudShell. "
"It supports connectivity, and adds new deployment types for apps which can be "
"used in CloudShell sandboxes."
),
long_description=(
"This Shell enables setting up Azure as a cloud provider in CloudShell. "
"It supports connectivity, and adds new deployment types for apps which can be "
"used in CloudShell sandboxes."
),
include_package_data=True,
)