added a setup file
Some checks are pending
Test and docs / test (3.10) (push) Waiting to run
Test and docs / test (3.11) (push) Waiting to run
Test and docs / test (3.12) (push) Waiting to run
Test and docs / test (3.7) (push) Waiting to run
Test and docs / test (3.8) (push) Waiting to run
Test and docs / test (3.9) (push) Waiting to run
Test and docs / build-docs (push) Waiting to run

This commit is contained in:
Manuel Cortez 2025-01-25 21:59:24 -06:00
parent d53676c689
commit c4d870252a

14
setup.py Normal file
View File

@ -0,0 +1,14 @@
from setuptools import setup
setup(name="updater",
version="0.3.0",
author="MCVSoftware",
author_email="support@mcvsoftware.com",
url="https://github.com/mcvsoftware/updater",
packages=["updater"],
long_description=open("readme.md", "r").read(),
description="Cross platform Auto updater for python desktop apps",
package_data={"updater": ["bootstrappers/**/*"]},
zip_safe = False,
install_requires=["pypubsub", "PySocks", "win_inet_pton"]
)