forked from Azure/azure-functions-python-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (51 loc) · 1.57 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
53
54
55
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from setuptools import find_packages, setup
from azure.functions import __version__
EXTRA_REQUIRES = {
'dev': [
'flake8~=4.0.1',
'flake8-logging-format',
'mypy',
'pytest',
'pytest-cov',
'requests==2.*',
'coverage',
'azure-functions-durable'
]
}
with open("README.md") as readme:
long_description = readme.read()
setup(
name='azure-functions',
version=__version__,
description='Azure Functions for Python',
long_description=long_description,
long_description_content_type='text/markdown',
author='Microsoft Corporation',
author_email='azpysdkhelp@microsoft.com',
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Environment :: Web Environment',
'Development Status :: 5 - Production/Stable',
],
license='MIT',
packages=find_packages(exclude=[
'azure', 'tests'
]),
package_data={
'azure.functions': ['py.typed']
},
extras_require=EXTRA_REQUIRES,
include_package_data=True,
test_suite='tests'
)