lazy_serve/setup.py

16 lines
475 B
Python
Raw Normal View History

2024-01-25 16:07:27 +00:00
from setuptools import setup, find_packages
setup(
2024-01-25 16:07:57 +00:00
name="lazy_serve",
version="0.1",
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
)