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(
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',
packages=find_packages(),
install_requires=[],
python_requires='>=3.6',
)