Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Build and publish Python distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions/checkout@deploy

- name: Initialize Python 3.9
uses: actions/setup-python@v1
Expand All @@ -24,14 +24,14 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install flake8

- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings.
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics

- name: Build binary wheel and a source tarball
run: python setup.py sdist

Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
long_description = f.read()

setup(
name='tv4you2016_pyvesync',
version='0.0.5',
name='pyvesync_jl',
version='2.1.10.0',
description='pyvesync is a library to manage Etekcity\
Devices, Cosori Air Fryers and Levoit Air \
Purifiers run on the VeSync app.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/tv4you2016/pyvesync',
author='Mark Perdue, Joe Trabulsy, Tv4you2016',
author_email='tv4you2016@gmail.com',
url='https://github.com/jl-inspera/pyvesync',
author='Mark Perdue, Joe Trabulsy, Tv4you2016, João Lino',
author_email='joao.oliveira.lino@gmail.com',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
Expand Down