Skip to content

Commit d9266e9

Browse files
committed
fix package
1 parent 12ac786 commit d9266e9

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
include optillm.py
12
include optillm/plugins/*.py
23
include optillm/cepo/*.py
34
include optillm/cepo/configs/*.yaml

optillm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33

44
# Version information
5-
__version__ = "0.2.0"
5+
__version__ = "0.2.1"
66

77
# Get the path to the root optillm.py
88
spec = util.spec_from_file_location(

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "optillm"
7-
version = "0.2.0"
7+
version = "0.2.1"
88
description = "An optimizing inference proxy for LLMs."
99
readme = "README.md"
1010
license = "Apache-2.0"
@@ -81,4 +81,7 @@ optillm = [
8181
"plugins/*.py",
8282
"cepo/*.py",
8383
"cepo/configs/*.yaml",
84-
]
84+
]
85+
86+
[tool.setuptools.data-files]
87+
"" = ["optillm.py"]

0 commit comments

Comments
 (0)