Skip to content

Commit

Permalink
Add MANIFEST.in to remove the BUILD files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen Tridgell committed Jan 18, 2022
1 parent 7d7dec6 commit 37313a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
global-exclude *_test.py BUILD
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = "0.1.1"
VERSION = "0.1.2"
DESCRIPTION = "A standalone package to do the vitis quantization step."

REQUIRED_PACKAGES = [
Expand All @@ -19,7 +19,7 @@
install_requires=REQUIRED_PACKAGES,
long_description=open("README.md").read(),
download_url=f"https://github.com/CruxML/vitis-quantizer/archive/refs/tags/{VERSION}.tar.gz",
packages=find_packages(exclude=["*_test.py"]),
packages=find_packages(),
license="Apache 2.0",
include_package_data=True,
keywords="vitis quantize machine learning xilinx",
Expand Down

0 comments on commit 37313a1

Please sign in to comment.