Skip to content

Commit

Permalink
Added Flask-SQLAlchemy
Browse files Browse the repository at this point in the history
  • Loading branch information
super3 committed May 27, 2015
1 parent 2c78dc9 commit de74e14
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion dataserv/Farmer.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@ def is_btc_address(self):
return all((char in chars_ok for char in self.address[1:]))

def register_farmer(self):
raise NotImplementedError
"""Add the farmer to the database."""
pass
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# Uncomment one or more lines below in the install_requires section
# for the specific client drivers/modules your application needs.
install_requires=['flask', 'RandomIO', 'siggy'],
install_requires=['flask', 'Flask-SQLAlchemy', 'RandomIO', 'siggy'],
tests_require=['coverage', 'coveralls'],
test_suite="tests",
)

0 comments on commit de74e14

Please sign in to comment.