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 from setuptools import setup
setup( setup(
name = "puffpan", name = "puffb",
keywords = ["pufferpanel"], 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", version = "1.0",
author = "powermaker450", author = "powermaker450",
author_email = "contact@povario.com", author_email = "contact@povario.com",
url = "https://github.com/powermaker450/puffpan", url = "https://github.com/powermaker450/puffb",
download_url = "https://github.com/powermaker450/puffpan/archive/refs/tags/v1.0.tar.gz", download_url = "https://github.com/powermaker450/puffb/archive/refs/tags/v1.0.tar.gz",
install_requires = ["requests"], install_requires = ["requests"],
py_modules = ["puffpan"], py_modules = ["puffb"],
license = "MIT" license = "MIT"
) )