Skip to content

Commit

Permalink
Merge pull request #50 from openedx/fixing-broken-pypi
Browse files Browse the repository at this point in the history
Fix: Few files were missing on last pypi build. Bump the version.
  • Loading branch information
awais786 authored Dec 15, 2022
2 parents 0ff4370 + 30898ef commit 48bdb75
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
import re
from os import path

from setuptools import setup
from setuptools import find_packages, setup

version = '1.2.1'

version = '1.2.2'
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 +90,9 @@ def is_requirement(line):
author_email='[email protected]',
url='https://github.com/Stanford-Online/xblock-qualtrics-survey',
license='AGPL-3.0',
packages=[
'qualtricssurvey',
],
packages=find_packages(
include=['qualtricssurvey', 'qualtricssurvey.*'],
),
install_requires=load_requirements('requirements/base.in'),
entry_points={
'xblock.v1': [
Expand Down

0 comments on commit 48bdb75

Please sign in to comment.