Skip to content

Commit 906d8b1

Browse files
Updates the packages version.
1 parent edb79aa commit 906d8b1

File tree

2 files changed

+23
-21
lines changed

2 files changed

+23
-21
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ sdist/
3232
var/
3333
wheels/
3434
share/python-wheels/
35+
quantllm.egg-info
3536
*.egg-info/
3637
.installed.cfg
3738
*.egg

setup.py

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,43 +3,31 @@
33
with open("README.md", "r", encoding="utf-8") as fh:
44
long_description = fh.read()
55

6-
with open("requirements.txt", "r", encoding="utf-8") as fh:
7-
requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")]
8-
96
setup(
107
name="quantllm",
11-
version="0.1.0",
8+
version="1.1.0",
129
author="Dark Coder",
1310
author_email="[email protected]",
1411
description="A lightweight library for quantized LLM fine-tuning and deployment",
1512
long_description=long_description,
1613
long_description_content_type="text/markdown",
17-
url="https://github.com/codewithdark-git/QuantLLM",
14+
project_urls={
15+
"Homepage": "https://github.com/codewithdark-git/DiffusionLM",
16+
"Sponsor": "https://github.com/sponsors/codewithdark-git", # 💰
17+
},
1818
packages=find_packages(),
1919
classifiers=[
2020
"Development Status :: 3 - Alpha",
2121
"Intended Audience :: Science/Research",
2222
"License :: OSI Approved :: MIT License",
2323
"Operating System :: OS Independent",
2424
"Programming Language :: Python :: 3",
25-
"Programming Language :: Python :: 3.8",
26-
"Programming Language :: Python :: 3.9",
25+
"Programming Language :: Python :: 3.10",
26+
"Programming Language :: Python :: 3.11",
2727
"Topic :: Scientific/Engineering :: Artificial Intelligence",
2828
],
29-
python_requires=">=3.8",
30-
install_requires=requirements,
31-
extras_require={
32-
"dev": [
33-
"sphinx>=4.5.0",
34-
"sphinx-rtd-theme>=1.0.0",
35-
"sphinx-copybutton>=0.5.0",
36-
"sphinx-autodoc-typehints>=1.18.3",
37-
"myst-parser>=0.18.1",
38-
"pytest>=7.0.0",
39-
"pytest-cov>=3.0.0",
40-
"black>=22.0.0",
41-
"isort>=5.10.0",
42-
"flake8>=4.0.0",
29+
python_requires=">=3.10",
30+
install_requires=[
4331
"torch>=2.0.0",
4432
"transformers>=4.30.0",
4533
"datasets>=2.12.0",
@@ -56,6 +44,19 @@
5644
"einops>=0.6.1",
5745
"evaluate>=0.4.0",
5846
"tensorboard>=2.13.0"
47+
],
48+
extras_require={
49+
"dev": [
50+
"sphinx>=4.5.0",
51+
"sphinx-rtd-theme>=1.0.0",
52+
"sphinx-copybutton>=0.5.0",
53+
"sphinx-autodoc-typehints>=1.18.3",
54+
"myst-parser>=0.18.1",
55+
"pytest>=7.0.0",
56+
"pytest-cov>=3.0.0",
57+
"black>=22.0.0",
58+
"isort>=5.10.0",
59+
"flake8>=4.0.0",
5960
],
6061
},
6162
include_package_data=True,

0 commit comments

Comments
 (0)