-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ad19b31
commit b6a3079
Showing
2 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'] | ||
) |