Metadata-Version: 2.1
Name: respond
Version: 0.1
Summary: A lightweight and useful wrapper around Flask's make_response and jsonify
Home-page: https://github.com/Julian-Nash/respond
Author: Julian Nash
Author-email: julianjamesnash@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Julian-Nash/respond
Project-URL: Documentation, https://github.com/Julian-Nash/respond
Project-URL: Source Code, https://github.com/Julian-Nash/respond
Description: import setuptools
        
        with open(r"C:\Users\julia\Programming\python_packages\http_response\setup.py", "r") as fh:
            long_description = fh.read()
        
        setuptools.setup(
            name="respond",
            version="0.1",
            packages=setuptools.find_packages(),
            install_requires=["flask", "httpz"],
            author="Julian Nash",
            author_email="julianjamesnash@gmail.com",
            description="A lightweight and useful wrapper around Flask's make_response and jsonify",
            long_description=long_description,
            long_description_content_type='text/markdown',
            keywords="flask http request parser json rest",
            url="https://github.com/Julian-Nash/respond",
            project_urls={
                "Bug Tracker": "https://github.com/Julian-Nash/respond",
                "Documentation": "https://github.com/Julian-Nash/respond",
                "Source Code": "https://github.com/Julian-Nash/respond",
            },
            classifiers=[
                'Intended Audience :: Developers',
                'License :: OSI Approved :: MIT License',
                'Programming Language :: Python :: 3.6',
                'Programming Language :: Python :: 3.7',
                'Programming Language :: Python :: 3.8',
            ],
        )
        
Keywords: flask http request parser json rest
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
