Skip to content

Commit

Permalink
Add setup.py for setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
mmshivesh committed Jul 20, 2020
1 parent 7c11290 commit 3c6340a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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',
)

0 comments on commit 3c6340a

Please sign in to comment.