Update setup.py

This commit is contained in:
powermaker450 2024-05-31 14:05:56 -04:00 committed by GitHub
parent 11156f9823
commit 9cf0911a5c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,15 +1,15 @@
from setuptools import setup
setup(
name = "puffpan",
name = "puffb",
keywords = ["pufferpanel"],
description = "puffpan is a small python module for interacting with a Pufferpanel daemon.",
description = "puffb 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/puffpan",
download_url = "https://github.com/powermaker450/puffpan/archive/refs/tags/v1.0.tar.gz",
url = "https://github.com/powermaker450/puffb",
download_url = "https://github.com/powermaker450/puffb/archive/refs/tags/v1.0.tar.gz",
install_requires = ["requests"],
py_modules = ["puffpan"],
py_modules = ["puffb"],
license = "MIT"
)