diff options
| author | Rémy HUBSCHER <remy@chefclub.tv> | 2019-09-24 22:19:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-24 22:19:38 +0200 |
| commit | 4ec452507504e6ee8a4ec0b5fbdcb51f60f1b9ef (patch) | |
| tree | 8474945bd6e40d3429dacb92eb11e2b1221aa9b9 /setup.py | |
| parent | 257a146b74737bf019830ba925178fb683bf6011 (diff) | |
| parent | 74c51be5a3ccdbb81d7a2111d198b7ac4c511ed5 (diff) | |
| download | ihatemoney-mirror-4ec452507504e6ee8a4ec0b5fbdcb51f60f1b9ef.zip ihatemoney-mirror-4ec452507504e6ee8a4ec0b5fbdcb51f60f1b9ef.tar.gz ihatemoney-mirror-4ec452507504e6ee8a4ec0b5fbdcb51f60f1b9ef.tar.bz2 | |
Merge pull request #476 from spiral-project/integrate-debts
Fix #434 Use the debts lib to solve settlements.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 12 |
1 files changed, 2 insertions, 10 deletions
@@ -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) |
