Skip to content
Snippets Groups Projects
Unverified Commit 2d634ffa authored by M. Zulqarnain's avatar M. Zulqarnain Committed by GitHub
Browse files

Changes for pypi upload (#69)

parent bee41ccb
No related branches found
No related tags found
No related merge requests found
all: install compile-sass quality test all: install compile-sass quality test
install-test: install-test:
pip install -q -r test_requirements.txt pip install -q -r requirements/test.txt
install: install-test install: install-test
......
...@@ -13,7 +13,7 @@ root folder: ...@@ -13,7 +13,7 @@ root folder:
.. code:: bash .. code:: bash
$ pip install -r requirements.txt $ pip install -r requirements/base.txt
Installing in Docker Devstack Installing in Docker Devstack
----------------------------- -----------------------------
......
...@@ -44,10 +44,16 @@ def is_requirement(line): ...@@ -44,10 +44,16 @@ def is_requirement(line):
""" """
return line and not line.startswith(('-r', '#', '-e', 'git+', '-c')) return line and not line.startswith(('-r', '#', '-e', 'git+', '-c'))
with open('README.rst') as _f:
long_description = _f.read()
setup( setup(
name='lti_consumer-xblock', name='lti-consumer-xblock',
version='1.3.1', version='1.4.0',
description='This XBlock implements the consumer side of the LTI specification.', description='This XBlock implements the consumer side of the LTI specification.',
long_description=long_description,
long_description_content_type='text/markdown',
packages=[ packages=[
'lti_consumer', 'lti_consumer',
], ],
...@@ -61,6 +67,8 @@ setup( ...@@ -61,6 +67,8 @@ setup(
] ]
}, },
package_data=package_data("lti_consumer", ["static", "templates", "public", "translations"]), package_data=package_data("lti_consumer", ["static", "templates", "public", "translations"]),
keywords='lti consumer xblock',
url='https://github.com/edx/xblock-lti-consumer',
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'Framework :: Django', 'Framework :: Django',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment