diff --git a/README.rst b/README.md similarity index 96% rename from README.rst rename to README.md index 3c9ff19..584130a 100644 --- a/README.rst +++ b/README.md @@ -1,6 +1,4 @@ -===== -Weapp auth -===== +#Weapp Auth Weapp auth is a Django app that helps to handle wechat mini program login and user info updating logic. diff --git a/setup.py b/setup.py index 066160e..f8804fa 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import os from setuptools import find_packages, setup -with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: +with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: README = readme.read() # allow setup.py to be run from any path @@ -15,6 +15,7 @@ license='BSD License', description='A helper Django app that handles wechat mini program login and user info updating logic', long_description=README, + long_description_content_type='text/markdown', url='https://blog.mimimi.fun/', author='Meowzz95', author_email='info@mimimi.fun', @@ -23,7 +24,7 @@ 'Framework :: Django', 'Framework :: Django :: 2.2', 'Intended Audience :: Developers', - 'License :: BSD License', + 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3.5',