diff --git a/.github/workflows/publish-to-pypi.yaml b/.github/workflows/publish-to-pypi.yaml index b56f91d..00e75b2 100644 --- a/.github/workflows/publish-to-pypi.yaml +++ b/.github/workflows/publish-to-pypi.yaml @@ -23,7 +23,6 @@ jobs: run: | python -m pip install build python -m pip install setuptools_scm setuptools>42 - python setup.py --version - name: Create setuptools_scm env variable if: startsWith(github.ref, 'refs/tags/') != true shell: bash diff --git a/setup.cfg b/setup.cfg index 18bf774..6764f83 100644 --- a/setup.cfg +++ b/setup.cfg @@ -110,6 +110,7 @@ ignore = per-file-ignores = src/vis_cpu/cli.py: T201,T001 tests/*.py: T201,T001,E402 + setup.py: D100 max-line-length = 88 max-complexity = 25 rst-roles = diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..6068493 --- /dev/null +++ b/setup.py @@ -0,0 +1,3 @@ +from setuptools import setup + +setup()