Skip to content

Commit

Permalink
Update setup.py - update packages, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
mavidser committed Oct 24, 2020
1 parent b8a039a commit 625c0cd
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
@@ -1,7 +1,7 @@
"""
Setup the XBlock
"""
from setuptools import setup
from setuptools import setup, find_packages
import os


Expand Down Expand Up @@ -45,14 +45,14 @@ def is_requirement(line):
return line and not line.startswith(('-r', '#', '-e', 'git+', '-c'))


print('PRINT')
print(find_packages())
setup(
name='xblock-sql-grader',
version='0.1',
version='0.2',
description='SQL Grader XBlock', # TODO: write a better description.
license='AGPLv3',
packages=[
'sql_grader',
],
packages=find_packages(exclude=('sql_grader.tests','sql_grader.tests.*')),
install_requires=load_requirements('requirements/base.in'),
entry_points={
'xblock.v1': [
Expand Down

0 comments on commit 625c0cd

Please sign in to comment.