diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..fef190c --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +import setuptools + +with open("README.md", "r") as readme: + description = readme.read() + +setuptools.setup( + name="pysnoonotes", + version="1.0.1", + author="mmshivesh", + author_email="", + description="A Python wrapper for the Snoonotes API", + long_description=description, + long_description_content_type="text/markdown", + url="https://github.com/mmshivesh/pysnoonotes", + packages=setuptools.find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], + install_requires=[ + "requests==2.23.0" + ], + python_requires='>=3.6', +)