forked from microsoft/PowerPlatformConnectors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
73 lines (66 loc) · 2.16 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# -----------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# -----------------------------------------------------------------------------
"""Microsoft Power Platform Connectors CLI package that can be installed using setuptools"""
import os
from setuptools import setup
__VERSION__ = '0.0.20'
def read(fname):
"""Local read helper function for long documentation"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='paconn',
version=__VERSION__,
description='Microsoft Power Platform Connectors CLI',
long_description=read('README.md'),
long_description_content_type="text/markdown",
author='Microsoft Corporation',
author_email='connectors@microsoft.com',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
keywords='azure, powerapps, flow, power platform, connectors',
python_requires='>=3.5,<4',
packages=[
'paconn',
'paconn.apimanager',
'paconn.authentication',
'paconn.commands',
'paconn.common',
'paconn.config',
'paconn.operations',
'paconn.settings'
],
install_requires=[
'docutils',
'flake8',
'future',
'knack~=0.5.1',
'pytest',
'pytest-xdist',
'virtualenv',
'requests',
'adal',
'msrestazure',
'azure-storage-blob>=2.1,<12.0'
],
extras_require={
":python_version<'3.0'": ['pylint~=1.9.2'],
":python_version>='3.0'": ['pylint~=2.0.0']
},
package_data={'paconn.config': ['*.*']},
include_package_data=True,
entry_points={
'console_scripts': ['paconn=paconn.__main__:main']
}
)