-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added package setup files for Pypi release.
- Loading branch information
1 parent
f5423f6
commit a57e0c5
Showing
9 changed files
with
70 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# file GENERATED by distutils, do NOT edit | ||
history.rst | ||
readme.md | ||
setup.cfg | ||
setup.py | ||
jsondb/__init__.py | ||
jsondb/db.py | ||
tests/__init__.py | ||
tests/__init__.pyc | ||
tests/tests.py | ||
tests/tests.pyc |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
include history.rst | ||
include readme.md | ||
|
||
recursive-include tests * |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.. :changelog: | ||
History | ||
------- | ||
|
||
`See release notes | ||
<https://github.com/gunthercox/jsondb/releases>`_ |
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[wheel] | ||
universal = 1 | ||
|
||
[metadata] | ||
description-file = readme.md |
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
|
||
try: | ||
from setuptools import setup | ||
except ImportError: | ||
from distutils.core import setup | ||
|
||
history = open("history.rst").read().replace(".. :changelog:", "") | ||
|
||
readme = lambda f: open(f, "r").read() | ||
|
||
setup( | ||
name="jsondatabase", | ||
version="0.0.1", | ||
description="A flat file database for json objects.", | ||
long_description=readme("readme.md") + "\n\n" + history, | ||
author="Gunther Cox", | ||
author_email="[email protected]", | ||
url="https://github.com/gunthercox/jsondb", | ||
packages=["jsondb"], | ||
package_dir={"jsondb": "jsondb"}, | ||
include_package_data=True, | ||
install_requires=[], | ||
license="BSD", | ||
zip_safe=False, | ||
keywords = ["jsondb"], | ||
classifiers=[ | ||
"Development Status :: 2 - Pre-Alpha", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: BSD License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 2.6", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.3", | ||
"Programming Language :: Python :: 3.4", | ||
], | ||
test_suite="tests", | ||
tests_require=[] | ||
) |
Empty file.
File renamed without changes.