Skip to content

Commit

Permalink
update setup.py to include description
Browse files Browse the repository at this point in the history
  • Loading branch information
godwins3 committed Jun 23, 2024
1 parent 21bf7d1 commit cc616b3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
click==8.1.7
Jinja2==3.1.3
material==0.1
mkdocs==1.6.0
pydantic==1.10.13
setuptools==68.2.2
Expand Down
11 changes: 9 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
from setuptools import setup, find_packages

# Read the content of your README file
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name='dustapi',
version='0.0.3',
version='0.0.4',
packages=find_packages(),
description='Fast light weight web server',
author='Praise Godwins',
long_description=long_description,
long_description_content_type="text/markdown", # Use "text/x-rst" if you have a reStructuredText README
author='Praise G',
install_requires=[
'werkzeug',
'jinja2',
Expand All @@ -14,6 +20,7 @@
'mkdocs',
'pyjwt',
'typer',
'pydantic',
],
entry_points={
'console_scripts': [
Expand Down

0 comments on commit cc616b3

Please sign in to comment.