Skip to content

Commit

Permalink
fix broken pypi package
Browse files Browse the repository at this point in the history
  • Loading branch information
guangrei committed Oct 15, 2024
1 parent 4e34363 commit 50a20dd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
recursive-include zcache *
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import setup
from setuptools import setup, find_packages
from os import path

this_directory = path.abspath(path.dirname(__file__))
Expand All @@ -12,10 +12,8 @@

setup(
name="zcache",
version="v3.0.1",
packages=[
"zcache",
],
version="v3.0.3",
packages=find_packages(),
license="MIT",
author="guangrei",
author_email="[email protected]",
Expand Down
6 changes: 3 additions & 3 deletions zcache/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# -*-coding:utf8;-*-
from zcache.Core.Database import Database
from zcache.Core.AsyncDatabase import AsyncDatabase
from .Core.Database import Database
from .Core.AsyncDatabase import AsyncDatabase


Cache = Database
AsyncCache = AsyncDatabase
__version__ = "3.0.1"
__version__ = "3.0.3"
__author__ = "Guangrei <[email protected]>"
__license__ = "MIT"
2 changes: 1 addition & 1 deletion zcache/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*-coding:utf8;-*-

__version__ = "3.0.1"
__version__ = "3.0.3"

0 comments on commit 50a20dd

Please sign in to comment.