From 2147774ca00fe9e32299965caaca7c5a52ea1331 Mon Sep 17 00:00:00 2001 From: ryan Date: Sun, 19 May 2024 11:04:27 -0700 Subject: [PATCH] remove black --- .github/workflows/run-tests.yml | 8 ++++---- setup.cfg | 13 ++++++------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index dc820243..92b46683 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v2 - + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: @@ -31,9 +31,9 @@ jobs: python setup.py install python -m pip install .[Dev] - - name: Run linter - run: python setup.py lint -c True - + - name: Trunk Check # runs linters under trunk check + uses: trunk-io/trunk-action@v1 + - name: Run test run: python setup.py test diff --git a/setup.cfg b/setup.cfg index 6717f864..52905ecc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,7 +6,7 @@ description = Simple and intuitive python framework for algorithmic trading. long_description = file: README.md long_description_content_type = text/markdown url = https://github.com/tfukaza/harvest/ - + classifiers = Programming Language :: Python :: 3 License :: OSI Approved :: MIT License @@ -30,21 +30,20 @@ install_requires = rich [options.extras_require] - Alpaca = + Alpaca = alpaca-trade-api - Robinhood = + Robinhood = pyotp - robin_stocks + robin_stocks Webull = webull - Kraken = + Kraken = krakenex Dev = coverage - black [options.entry_points] -console_scripts = +console_scripts = harvest = harvest.cli:main [coverage:run]