diff --git a/.github/workflows/Pipeline.yml b/.github/workflows/Pipeline.yml index 522058f..c0c89bf 100644 --- a/.github/workflows/Pipeline.yml +++ b/.github/workflows/Pipeline.yml @@ -102,9 +102,7 @@ jobs: run: | . ./.github/scripts/activate.sh - cd f4pga pip install . - cd .. - name: 🚧 Test f4pga-env run: | @@ -165,9 +163,7 @@ jobs: run: | . ./.github/scripts/activate.sh - cd f4pga pip install . - cd .. - name: 🚧 Test f4pga build run: | @@ -219,9 +215,7 @@ jobs: run: | . ./.github/scripts/activate.sh - cd f4pga pip install . - cd .. - name: 🚦 Test Python wrappers run: | diff --git a/.gitignore b/.gitignore index 8310e6d..3819574 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ *.pyc *.sw* -/f4pga/build/ +/build +/dist +/*.egg-info diff --git a/f4pga/requirements.txt b/requirements.txt similarity index 100% rename from f4pga/requirements.txt rename to requirements.txt diff --git a/f4pga/setup.py b/setup.py similarity index 99% rename from f4pga/setup.py rename to setup.py index 21d20d8..dc11575 100644 --- a/f4pga/setup.py +++ b/setup.py @@ -90,7 +90,6 @@ setuptools_setup( "f4pga.common_modules", "f4pga.wrappers.sh" ], - package_dir={"f4pga": "."}, package_data={ 'f4pga': ['*.json', 'platforms/*.json'], 'f4pga.wrappers.sh': ['xc7/*.f4pga.sh', 'quicklogic/*.f4pga.sh']