Skip to content

Commit

Permalink
Fix install_requires and add installation of grader_support package (#82
Browse files Browse the repository at this point in the history
)

* fix install_requires (requirements/production.txt needs to be read as text), and add installation of grader_support package

* minor edits (setup.py)
  • Loading branch information
TheVinhLuong102 committed Feb 1, 2023
1 parent a635161 commit ddf795b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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(),
)

0 comments on commit ddf795b

Please sign in to comment.