puffb/setup.py
powermaker450 037f8beb94 Publish
2024-05-31 09:22:07 -04:00

14 lines
408 B
Python

from setuptools import setup
setup(
name = "puffpan",
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"],
py_modules = ["pufferpy"],
license = "MIT"
)