File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 1010 python --version
1111 displayName: 'Check python version'
1212 - bash : |
13+ python -m venv .env
14+ .env\Scripts\Activate.ps1
1315 python -m pip install -U pip
16+ python -m pip install .
1417 pip install twine wheel
1518 python setup.py sdist bdist_wheel
1619 displayName: 'Build Python SDK'
Original file line number Diff line number Diff line change 44from setuptools import find_packages , setup
55from azure .functions import __version__
66
7+ INSTALL_REQUIRES = ["Werkzeug" ]
8+
79EXTRA_REQUIRES = {
810 'dev' : [
911 'flake8~=4.0.1' ,
4951 package_data = {
5052 'azure.functions' : ['py.typed' ]
5153 },
54+ install_requires = INSTALL_REQUIRES ,
5255 extras_require = EXTRA_REQUIRES ,
5356 include_package_data = True ,
5457 test_suite = 'tests'
You can’t perform that action at this time.
0 commit comments