updated setup.py to latest features. closes #100

Commit c50163a · patx · 2025-01-22T11:06:47-05:00

Changeset
c50163a883e8fc1bd36f5c3847922ac499728a23
Parents
004fcf511b3658a854750a31129799b6db76eecf

View source at this commit

Comments

No comments yet.

Log in to comment

Diff

diff --git a/MANIFEST b/MANIFEST
new file mode 100644
index 0000000..ea9eacf
--- /dev/null
+++ b/MANIFEST
@@ -0,0 +1,3 @@
+# file GENERATED by distutils, do NOT edit
+pickledb.py
+setup.py
diff --git a/dist/pickleDB-1.1.1.tar.gz b/dist/pickleDB-1.1.1.tar.gz
new file mode 100644
index 0000000..ebfe2fd
Binary files /dev/null and b/dist/pickleDB-1.1.1.tar.gz differ
diff --git a/setup.py b/setup.py
index 1bf58bc..00572a0 100644
--- a/setup.py
+++ b/setup.py
@@ -10,16 +10,16 @@ pickleDB is Fun
 
 ::
 
-    >>> import pickledb
+    >>> from pickledb import PickleDB
 
-    >>> db = pickledb.load('test.db')
+    >>> db = PickleDB('test.db')
 
     >>> db.set('key', 'value')
 
     >>> db.get('key')
     'value'
 
-    >>> db.dump()
+    >>> db.save()
     True
 
 
@@ -35,8 +35,6 @@ Links
 `````
 
 * `Website <https://patx.github.io/pickledb>`_
-* `Documentation <http://patx.github.io/pickledb/commands.html>`_
-* `PyPI <http://pypi.python.org/pypi/pickleDB>`_
 * `Github Repo <https://github.com/patx/pickledb>`_
 
 
@@ -56,7 +54,7 @@ Key Improvements in Version 1.0
 from distutils.core import setup
 
 setup(name="pickleDB",
-    version="1.1",
+    version="1.1.1",
     description="A lightweight and simple database using json.",
     long_description=__doc__,
     author="Harrison Erd",