diff --git a/build_and_publish.sh b/build_and_publish.sh new file mode 100755 index 0000000..b831b8c --- /dev/null +++ b/build_and_publish.sh @@ -0,0 +1 @@ +python3 setup.py sdist && python3 -m twine upload dist/* \ No newline at end of file diff --git a/setup.py b/setup.py index f8804fa..27b2781 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='django-weapp-auth', - version='1.0.0', + version='1.0.5', packages=find_packages(), include_package_data=True, license='BSD License', @@ -19,6 +19,10 @@ url='https://blog.mimimi.fun/', author='Meowzz95', author_email='info@mimimi.fun', + install_requires=[ + 'requests', + 'pycrypto' + ], classifiers=[ 'Environment :: Web Environment', 'Framework :: Django', diff --git a/weapp_auth/authenticator/__init__.py b/weapp_auth/authenticator/__init__.py new file mode 100644 index 0000000..e69de29