Skip to content

Commit

Permalink
Merge pull request #74 from openedx/fixing-broken-build
Browse files Browse the repository at this point in the history
fix: Last pypi release was broken. Fixed those issues. Bump the version.
  • Loading branch information
awais786 authored Dec 15, 2022
2 parents ade351c + 3cad5ae commit 3c3ce2f
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='[email protected]',
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 3c3ce2f

Please sign in to comment.