Skip to content

Commit

Permalink
Removed empty requirements file.
Browse files Browse the repository at this point in the history
  • Loading branch information
gunthercox committed Oct 28, 2015
1 parent 17d451d commit 23ac50d
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
include history.rst
include readme.md
include requirements.txt

recursive-include tests *
Empty file removed requirements.txt
Empty file.
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-


try:
from setuptools import setup
except ImportError:
Expand All @@ -11,12 +10,9 @@

readme = lambda f: open(f, "r").read()

req = open("requirements.txt")
requirements = req.readlines()

setup(
name="jsondatabase",
version="0.0.9",
version="0.1.0",
description="A flat file database for json objects.",
long_description=readme("readme.md") + "\n\n" + history,
author="Gunther Cox",
Expand All @@ -25,7 +21,6 @@
packages=["jsondb"],
package_dir={"jsondb": "jsondb"},
include_package_data=True,
install_requires=requirements,
license="BSD",
zip_safe=True,
keywords = ["jsondb"],
Expand Down

0 comments on commit 23ac50d

Please sign in to comment.