Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Logan committed Jun 25, 2021
1 parent ba24f75 commit 89947d8
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions setup.py
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,
)

0 comments on commit 89947d8

Please sign in to comment.