-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
52 lines (44 loc) · 1.67 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
47
48
49
50
51
52
#!/usr/bin/env python
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
import os
import re
from setuptools import setup, find_packages
# Version extraction inspired from 'requests'
with open(os.path.join('autorest', '_version.py'), 'r') as fd:
version = re.search(r'^VERSION\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(),
re.MULTILINE).group(1)
if not version:
raise RuntimeError('Cannot find version information')
setup(
name="autorest",
version=version,
description="Microsoft Autorest Plugins for Azure Functions",
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
license='MIT License',
author='Microsoft Corporation',
author_email='azpysdkhelp@microsoft.com',
url='https://github.com/Azure/autorest.azure-functions-python',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License',
],
packages=find_packages(exclude=[
'test',
]),
install_requires=[
"json-rpc",
"Jinja2 >= 2.11", # I need "include" and auto-context + blank line are not indented by default
"pyyaml",
"m2r",
],
)