-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
665998f
commit 722f374
Showing
2 changed files
with
23 additions
and
18 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,19 +1,8 @@ | ||
from distutils.core import setup | ||
from setuptools import find_packages | ||
|
||
setup( | ||
name='blitzdb', | ||
version='0.4.4', | ||
author='Andreas Dewes - 7scientists', | ||
author_email='[email protected]', | ||
license='MIT', | ||
entry_points={}, | ||
url='https://github.com/adewes/blitzdb', | ||
packages=find_packages(), | ||
install_requires=['six'], | ||
zip_safe=False, | ||
description='A document-oriented database written purely in Python.', | ||
long_description="""Blitz is a document-oriented database toolkit for Python that is backend-agnostic. | ||
LONG_DESCRIPTION = """\ | ||
Blitz is a document-oriented database toolkit for Python that is backend-agnostic. | ||
It comes with a flat-file database for JSON documents and provides MongoDB-like querying capabilities. | ||
|
@@ -73,4 +62,18 @@ | |
* 0.1.2: Small bugfixes, BlitzDB version number now contained in DB config dict | ||
* 0.1.1: BlitzDB is now Python3 compatible (thanks to David Koblas) | ||
""" | ||
|
||
setup( | ||
name='blitzdb', | ||
version='0.4.4', | ||
author='Andreas Dewes - 7scientists', | ||
author_email='[email protected]', | ||
license='MIT', | ||
entry_points={}, | ||
url='https://github.com/adewes/blitzdb', | ||
packages=find_packages(), | ||
install_requires=['six'], | ||
zip_safe=False, | ||
description='A document-oriented database written purely in Python.', | ||
long_description=LONG_DESCRIPTION, | ||
) |