aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorAlexis M <alexis@notmyidea.org>2019-09-24 19:37:16 +0200
committerAlexis M <alexis@notmyidea.org>2019-09-24 21:25:06 +0200
commit74c51be5a3ccdbb81d7a2111d198b7ac4c511ed5 (patch)
treedb23cad9098f560b996c963f571c2435cc05bf2f /setup.py
parent9fc7fc768e3da0ac5afa0f4739ba68037e9959bc (diff)
downloadihatemoney-mirror-74c51be5a3ccdbb81d7a2111d198b7ac4c511ed5.zip
ihatemoney-mirror-74c51be5a3ccdbb81d7a2111d198b7ac4c511ed5.tar.gz
ihatemoney-mirror-74c51be5a3ccdbb81d7a2111d198b7ac4c511ed5.tar.bz2
Fix #434 Use the debts lib to solve settlements.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py12
1 files changed, 2 insertions, 10 deletions
diff --git a/setup.py b/setup.py
index 38acbbd..675e3f9 100644
--- a/setup.py
+++ b/setup.py
@@ -7,14 +7,6 @@ from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
-
-def parse_requirements(filename):
- """ load requirements from a pip requirements file """
- with open(filename) as lines:
- lineiter = (line.strip() for line in lines)
- return [line for line in lineiter if line and not line.startswith("#")]
-
-
README = open('README.rst', encoding='utf-8').read()
CHANGELOG = open('CHANGELOG.rst', encoding='utf-8').read()
@@ -31,7 +23,6 @@ ENTRY_POINTS = {
],
}
-
setup(name='ihatemoney',
version='4.2.dev0',
description='A simple shared budget manager web application.',
@@ -69,5 +60,6 @@ setup(name='ihatemoney',
"flask-cors",
"six",
"itsdangerous",
- "email_validator"],
+ "email_validator",
+ "debts"],
entry_points=ENTRY_POINTS)