f4pga: Update f4pga/setupy.py to not install removed code

Signed-off-by: Krzysztof Boronski <kboronski@antmicro.com>
This commit is contained in:
Krzysztof Boronski 2022-05-06 06:46:50 -05:00
parent eb195d2135
commit 1e82b22bb5
1 changed files with 2 additions and 8 deletions

View File

@ -79,9 +79,7 @@ setuptools_setup(
packages=[
"f4pga",
"f4pga.common_modules",
"f4pga.wrappers.sh",
"f4pga.wrappers",
"f4pga.wrappers.xc7"
"f4pga.wrappers.sh"
],
package_dir={"f4pga": "."},
package_data={
@ -93,11 +91,7 @@ setuptools_setup(
install_requires=list(set(get_requirements(requirementsFile))),
entry_points={
"console_scripts": [
"f4pga = f4pga.__init__:main",
"f4pga-place = f4pga.wrappers.xc7.__init__:place",
"f4pga-route = f4pga.wrappers.xc7.__init__:route",
"f4pga-synth = f4pga.wrappers.xc7.synth:main",
"f4pga-write-fasm = f4pga.wrappers.xc7.__init__:write_fasm",
"f4pga = f4pga.__init__:main"
] + wrapper_entrypoints
},
)