azure-functions-devops-build/setup.py

37 строки
1.3 KiB
Python

#-------------------------------------------------------------------------
# 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"
)