This repository was archived by the owner on Jul 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (30 loc) · 1.27 KB
/
setup.py
File metadata and controls
36 lines (30 loc) · 1.27 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
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#--------------------------------------------------------------------------
from os import path
from setuptools import setup, find_packages
NAME = "azure-functions-devops-build"
VERSION = "0.0.22"
REQUIRES = ["msrest",
"vsts",
"jinja2"]
file_directory = path.abspath(path.dirname(__file__))
with open(path.join(file_directory, 'README.md')) as f:
long_description = f.read()
setup(
name=NAME,
version=VERSION,
license="MIT",
description="Python package for integrating Azure Functions with Azure DevOps. Specifically made for the Azure CLI",
author="Oliver Dolk, Hanzhang Zeng",
author_email="t-oldolk@microsoft.com, hazeng@microsoft.com",
url="https://github.com/Azure/azure-functions-devops-build",
keywords=["Microsoft", "Azure DevOps", "Azure Functions", "Azure Pipelines"],
install_requires=REQUIRES,
packages=find_packages(exclude=["tests", "sample_yaml_builds"]),
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown"
)