From 6175ee2c4cef03988cc3c7f78f99fc1a3431cf94 Mon Sep 17 00:00:00 2001 From: Saurav Maheshkar Date: Thu, 23 Feb 2023 11:30:14 +0000 Subject: [PATCH] chore: drop MANIFEST --- MANIFEST.in | 1 - setup.py | 5 +++-- 2 files changed, 3 insertions(+), 3 deletions(-) delete mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index 1aba38f..0000000 --- a/MANIFEST.in +++ /dev/null @@ -1 +0,0 @@ -include LICENSE diff --git a/setup.py b/setup.py index b51aa93..4428228 100644 --- a/setup.py +++ b/setup.py @@ -12,8 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -from setuptools import setup -from setuptools import find_packages +from setuptools import find_packages, setup + extras = {} extras["quality"] = ["black ~= 22.0", "isort >= 5.5.4", "flake8 >= 3.8.3"] @@ -24,6 +24,7 @@ setup( name="peft", version="0.2.0.dev0", description="Parameter-Efficient Fine-Tuning (PEFT)", + license_files=["LICENSE"], long_description=open("README.md", "r", encoding="utf-8").read(), long_description_content_type="text/markdown", keywords="deep learning",