rorymurdock/reqREST

View on GitHub
setup.py

Summary

Maintainability
A
0 mins
Test Coverage
"""Setup.py"""
import setuptools

with open("README.md", "r") as fh:
    LONG_DESCRIPTION = fh.read()

setuptools.setup(
    name="reqrest",
    version="0.0.6",
    author="Rory Murdock",
    author_email="rory@itmatic.com.au",
    description="A REST API wrapper for requests",
    long_description=LONG_DESCRIPTION,
    long_description_content_type="text/markdown",
    url="https://github.com/rorymurdock/reqrest",
    packages=setuptools.find_packages(),
    classifiers=[
        "Development Status :: 5 - Production/Stable",
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: Apache Software License",
        "Operating System :: OS Independent",
    ],
    install_requires=['requests'],
)