-
Notifications
You must be signed in to change notification settings - Fork 0
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
Logan
committed
Jun 25, 2021
1 parent
ba24f75
commit 89947d8
Showing
1 changed file
with
15 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
import setuptools | ||
from distutils.core import setup | ||
|
||
with open("README.md", "r", encoding="utf-8") as fh: | ||
long_description = fh.read() | ||
# with open("README.md", "r", encoding="utf-8") as fh: | ||
# long_description = fh.read() | ||
|
||
REQUIRED_PACKAGES = ["boto3", "pyjwt[crypto]"] | ||
|
||
setuptools.setup( | ||
setup( | ||
name="bhjwt", | ||
# version="0.0.1", | ||
version="0.0.1", | ||
author="Brighthive", | ||
author_email="[email protected]", | ||
description="Brighthive Library for JWT", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/brighthive/brighthive-jwt-authorization-lib", | ||
classifiers=[ | ||
"Programming Language :: Python :: 3.8", | ||
"Operating System :: OS Independent", | ||
], | ||
# author_email="[email protected]", | ||
# description="Brighthive Library for JWT", | ||
# long_description=long_description, | ||
# long_description_content_type="text/markdown", | ||
# url="https://github.com/brighthive/brighthive-jwt-authorization-lib", | ||
# classifiers=[ | ||
# "Programming Language :: Python :: 3.8", | ||
# "Operating System :: OS Independent", | ||
# ], | ||
packages=['bhjwt'], | ||
python_requires=">=3.8", | ||
# python_requires=">=3.8", | ||
install_requires=REQUIRED_PACKAGES, | ||
) |