From 74c51be5a3ccdbb81d7a2111d198b7ac4c511ed5 Mon Sep 17 00:00:00 2001 From: Alexis M Date: Tue, 24 Sep 2019 19:37:16 +0200 Subject: Fix #434 Use the debts lib to solve settlements. --- setup.py | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'setup.py') 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) -- cgit v1.1