Update setup.py

This commit is contained in:
powermaker450 2024-05-31 11:43:16 -04:00 committed by GitHub
parent 7236a56548
commit 8b653c13f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,12 +2,15 @@ from setuptools import setup
setup(
name = "puffpan",
packages = ["puffpan"],
keywords = ["pufferpanel"],
description = "puffpan is a small python module for interacting with a Pufferpanel daemon.",
version = "1.0",
author = "powermaker450",
author_email = "contact@povario.com",
url = "https://github.com/powermaker450/puff",
install_requires = ["setuptools", "requests"],
download_url = "https://github.com/powermaker450/puffpan/archive/refs/tags/v1.0.tar.gz"
install_requires = ["requests"],
py_modules = ["pufferpy"],
license = "MIT"
)