diff --git a/README.md b/README.md index a16456f..302b47a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,3 @@ -``` # lazy_serve A simple, easy-to-use Python package for starting HTTP servers with minimal setup. Ideal for serving static files in development environments or for lightweight file sharing. @@ -7,10 +6,11 @@ A simple, easy-to-use Python package for starting HTTP servers with minimal setu To install lazy_serve, simply use pip: -```sh +```bash pip install lazy_serve ``` + ## Usage Using lazy_serve is straightforward. Here's a basic example: diff --git a/makefile b/makefile new file mode 100644 index 0000000..0d6dd3a --- /dev/null +++ b/makefile @@ -0,0 +1,8 @@ +clean: + rm -rf dist/ + +build: clean + python -m build --sdist --wheel + +pub: build + twine upload dist/* diff --git a/setup.py b/setup.py index cde2fe6..0a31dab 100644 --- a/setup.py +++ b/setup.py @@ -2,13 +2,13 @@ from setuptools import find_packages, setup setup( name="lazy_serve", - version="0.2", - description="A simple package for effortlessly starting HTTP servers.", + version="0.2post5", + description="A simple package for effortlessly starting multiple threaded HTTP servers.", long_description=open("README.md").read(), long_description_content_type="text/markdown", - author="Your Name", - author_email="your.email@example.com", - url="https://github.com/yourusername/lazy_serve", + author="Michael Pilosov", + author_email="mm@clfx.cc", + url="https://git.mlden.com/mm/lazy_serve.git", packages=find_packages(), install_requires=[], python_requires=">=3.6",