aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rwxr-xr-xcardbase.py0
-rwxr-xr-xtest_cardbase.py23
3 files changed, 26 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..a457e8f
--- /dev/null
+++ b/README.md
@@ -0,0 +1,3 @@
+# cardbase
+
+Cardbase is a (for now) simple tool for managing MTG cards. My collection was getting out of hand, so I decided to catalogue in a way that makes it easy to determine how many of each card I have, for putting decks together.
diff --git a/cardbase.py b/cardbase.py
new file mode 100755
index 0000000..e69de29
--- /dev/null
+++ b/cardbase.py
diff --git a/test_cardbase.py b/test_cardbase.py
new file mode 100755
index 0000000..e088f13
--- /dev/null
+++ b/test_cardbase.py
@@ -0,0 +1,23 @@
+#!/usr/bin/env python3
+
+import sys
+import unittest
+
+class Test_testSomething(unittest.TestCase):
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def test_something(self):
+ pass
+
+def test():
+
+ unittest.main(exit=False)
+
+# The entry point
+if __name__ == "__main__":
+ test()