From 55af2f40188ee053c71a083fbc0fa82e5988126c Mon Sep 17 00:00:00 2001 From: Zulqarnain Date: Mon, 1 Jun 2020 14:53:37 +0500 Subject: [PATCH] add upload section --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.py b/setup.py index 27222f6..7373e11 100644 --- a/setup.py +++ b/setup.py @@ -4,6 +4,9 @@ import os from setuptools import setup +with open('README.md') as a: + long_description = a.read() + def package_data(pkg, roots): """Generic function to find package_data. @@ -48,6 +51,8 @@ def is_requirement(line): name='crowdsourcehinter-xblock', version='0.5', description='crowdsourcehinter XBlock', # TODO: write a better description. + long_description=long_description, + author='edX', packages=[ 'crowdsourcehinter', ], @@ -58,6 +63,7 @@ def is_requirement(line): ] }, package_data=package_data("crowdsourcehinter", ["static", "public"]), + url='https://github.com/edx/crowdsourcehinter/', classifiers=[ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5',