Skip to content

Commit

Permalink
fix: Last pypi release was broken. Fixed those issues in this build.
Browse files Browse the repository at this point in the history
  • Loading branch information
awais786 committed Dec 15, 2022
1 parent ade351c commit 3cad5ae
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
import re
from os import path

from setuptools import setup
from setuptools import find_packages, setup

version = '1.1.1'
version = '1.1.3'
description = __doc__.strip().split('\n')[0]
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.rst')) as file_in:
Expand Down Expand Up @@ -89,9 +89,9 @@ def is_requirement(line):
author_email='stv@stanford.edu',
url='https://github.com/Stanford-Online/xblock-submit-and-compare',
license='AGPL-3.0',
packages=[
'submit_and_compare',
],
packages=find_packages(
include=['submit_and_compare', 'submit_and_compare.*']
),
install_requires=load_requirements('requirements/base.in'),
entry_points={
'xblock.v1': [
Expand Down

0 comments on commit 3cad5ae

Please sign in to comment.