Skip to content

Commit

Permalink
update the setup file
Browse files Browse the repository at this point in the history
  • Loading branch information
mingjie tang committed Aug 28, 2023
1 parent 3addf9c commit 6cff9ce
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
from setuptools import setup, find_packages
import os

setup(name='aspen',
version='0.2',
packages=find_packages(exclude=["test"]))
import pkg_resources
from setuptools import find_packages, setup

setup(
name='llm-multi-lora-finetune',
version='0.0.1',
packages=find_packages(),
description='A tool for fine-tuning large language models using LoRA or QLoRA',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache License",
"Operating System :: OS Independent",
],
install_requires=[
str(r)
for r in pkg_resources.parse_requirements(
open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
)
],
include_package_data=True,
python_requires='>=3.6',
)

0 comments on commit 6cff9ce

Please sign in to comment.