From 2d634ffaa47eecc1013d9a5d283eca58d80c2ef0 Mon Sep 17 00:00:00 2001 From: "M. Zulqarnain" <muhammad.zulqarnain@arbisoft.com> Date: Thu, 4 Jun 2020 20:05:22 +0500 Subject: [PATCH] Changes for pypi upload (#69) --- Makefile | 2 +- README.rst | 2 +- setup.py | 12 ++++++++++-- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index ba0a406..0d35045 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ all: install compile-sass quality test install-test: - pip install -q -r test_requirements.txt + pip install -q -r requirements/test.txt install: install-test diff --git a/README.rst b/README.rst index 781b985..1be7621 100644 --- a/README.rst +++ b/README.rst @@ -13,7 +13,7 @@ root folder: .. code:: bash - $ pip install -r requirements.txt + $ pip install -r requirements/base.txt Installing in Docker Devstack ----------------------------- diff --git a/setup.py b/setup.py index fa34929..b1a3dcd 100644 --- a/setup.py +++ b/setup.py @@ -44,10 +44,16 @@ def is_requirement(line): """ return line and not line.startswith(('-r', '#', '-e', 'git+', '-c')) + +with open('README.rst') as _f: + long_description = _f.read() + setup( - name='lti_consumer-xblock', - version='1.3.1', + name='lti-consumer-xblock', + version='1.4.0', description='This XBlock implements the consumer side of the LTI specification.', + long_description=long_description, + long_description_content_type='text/markdown', packages=[ 'lti_consumer', ], @@ -61,6 +67,8 @@ setup( ] }, package_data=package_data("lti_consumer", ["static", "templates", "public", "translations"]), + keywords='lti consumer xblock', + url='https://github.com/edx/xblock-lti-consumer', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Framework :: Django', -- GitLab