2024-01-25 16:39:48 +00:00
|
|
|
from setuptools import find_packages, setup
|
2024-01-25 16:07:27 +00:00
|
|
|
|
|
|
|
setup(
|
2024-01-25 16:07:57 +00:00
|
|
|
name="lazy_serve",
|
2024-01-25 16:39:48 +00:00
|
|
|
version="0.2",
|
2024-01-25 16:07:57 +00:00
|
|
|
description="A simple package for effortlessly starting 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",
|
2024-01-25 16:07:27 +00:00
|
|
|
packages=find_packages(),
|
|
|
|
install_requires=[],
|
2024-01-25 16:07:57 +00:00
|
|
|
python_requires=">=3.6",
|
2024-01-25 16:07:27 +00:00
|
|
|
)
|