Metadata-Version: 2.1
Name: dops-test
Version: 0.1.0
Summary: A test package for ops automation
Home-page: https://github.com/thangnt/dops-test
Author: thangnt
Author-email: mr.thangnt@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

from setuptools import setup, find_packages

setup(
    name="kiddev-test",
    version="0.1.0",
    packages=find_packages(),
    install_requires=[],  # Add any dependencies your package needs
    author="Your Name",
    author_email="your.email@example.com",
    description="A test package for kids development",
    long_description=open("README.md").read(),
    long_description_content_type="text/markdown",
    url="https://github.com/yourusername/kiddev-test",
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    python_requires='>=3.6',
)
