From 75aba19165cbe890e600cb9f04e04a3dd865e6a2 Mon Sep 17 00:00:00 2001 From: "bozo.kopic" Date: Wed, 27 Jul 2022 03:28:02 +0200 Subject: init --- setup.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f4c38af --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +from pathlib import Path +from setuptools import setup + + +readme = (Path(__file__).parent / 'README.rst').read_text() + + +setup( + name='stm32ctl', + version='0.0.1', + description='STM32 system bootloader control', + long_description=readme, + long_description_content_type='text/x-rst', + url='https://github.com/bozokopic/stm32ctl', + packages=['stm32ctl'], + license='GPLv3', + classifiers=[ + 'Programming Language :: Python :: 3', + 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'], + install_requires=['hat-aio~=0.6.3', + 'hat-drivers~=0.5.15'], + entry_points={'console_scripts': ['stm32ctl = stm32ctl.main:main']}) -- cgit v1.2.3-70-g09d2