From ddf795b8211d14c662ff5a338377406febcef548 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?The=20Vinh=20Luong=20=28L=C6=B0=C6=A1ng=20Th=E1=BA=BF=20Vi?= =?UTF-8?q?nh=29?= Date: Wed, 1 Feb 2023 07:33:14 -0800 Subject: [PATCH] Fix install_requires and add installation of grader_support package (#82) * fix install_requires (requirements/production.txt needs to be read as text), and add installation of grader_support package * minor edits (setup.py) --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a4c14f6..cf56982 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,14 @@ from setuptools import setup + setup( name='xqueue_watcher', version='0.2', description='XQueue Pull Grader', packages=[ + 'grader_support', 'xqueue_watcher', ], - install_requires=open('requirements/production.txt', 'rb').readlines() + install_requires=open('requirements/production.txt', + 'rt', encoding='utf-8').readlines(), )