Skip to content

Commit

Permalink
add package meta
Browse files Browse the repository at this point in the history
  • Loading branch information
dorinclisu committed Feb 27, 2021
1 parent ad19b31 commit b6a3079
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Integrate FastAPI with https://auth0.com in a simple and elegant way.
Get automatic Swagger UI integration for the implicit scheme (along others), which means that signing in using social providers is only a few clicks away with no additional code.

# Installation
- Latest version: `pip install https://github.com/dorinclisu/fastapi-auth0/archive/master.zip`
- Locked version: `pip install https://github.com/dorinclisu/fastapi-auth0/archive/x.y.z.zip` (check release tags)
- `pip install fastapi-auth0`
- Latest beta: `pip install -i https://test.pypi.org/simple/ fastapi-auth0`

# Requirements
Reading auth0 docs is recommended in order to understand the following concepts:
Expand Down
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@

import setuptools

with open('README.md', encoding='utf-8') as file:
readme = file.read()

setuptools.setup(
name='fastapi-auth0',
version='0.1.3',
description='Easy auth0.com integration for FastAPI',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/dorinclisu/fastapi-auth0',
author='Dorin Clisu',
author_email='[email protected]',
license='GNU-GPL-V3',
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
license='GNU-GPL-V3',
description='Easy auth0.com integration for FastAPI',
python_requires='>=3.6',
install_requires=['fastapi>=0.60.0', 'python-jose>=3.2.0', 'requests']
)

0 comments on commit b6a3079

Please sign in to comment.