2025-01-25 21:59:24 -06:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(name="updater",
|
2025-01-26 17:12:25 -06:00
|
|
|
version="0.3.1",
|
2025-01-25 21:59:24 -06:00
|
|
|
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"]
|
|
|
|
)
|