-
Notifications
You must be signed in to change notification settings - Fork 517
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: SimFG <[email protected]>
- Loading branch information
Showing
2 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
from typing import List | ||
|
||
import setuptools | ||
from setuptools import find_packages | ||
from typing import List | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
@@ -17,7 +18,7 @@ def parse_requirements(file_name: str) -> List[str]: | |
setuptools.setup( | ||
name="gptcache", | ||
packages=find_packages(), | ||
version="0.1.21", | ||
version="0.1.22", | ||
author="SimFG", | ||
author_email="[email protected]", | ||
description="GPTCache, a powerful caching library that can be used to speed up and lower the cost of chat " | ||
|