forked from Azure/azure-functions-python-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 868 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (30 loc) · 868 Bytes
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
from setuptools import setup
setup(
name='azure-functions',
version='1.0.0b1',
description='Azure Functions for Python',
author='Microsoft Corporation',
author_email='azpysdkhelp@microsoft.com',
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Environment :: Web Environment',
'Development Status :: 3 - Alpha',
],
license='MIT',
packages=['azure.functions'],
extras_require={
'dev': [
'flake8~=3.5.0',
'mypy',
'pytest',
'requests==2.*',
]
},
include_package_data=True,
test_suite='tests'
)