blob: 199cbb2d79540a09da927ddf93e33a10a4f4c702 [file] [log] [blame]
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
SPDX-License-Identifier: GPL-3.0-or-later
Copyright (c) 2023 Savoir-faire Linux
"""
from setuptools import setup, find_packages
setup(
name="pywinmake",
description="A python tool to build Windows packages",
version="0.0.1",
packages=find_packages(),
python_requires=">=3.6",
install_requires=[
"coloredlogs",
],
)