diff options
| author | bozo.kopic <bozo@kopic.xyz> | 2022-07-27 03:28:02 +0200 |
|---|---|---|
| committer | bozo.kopic <bozo@kopic.xyz> | 2022-07-27 03:28:02 +0200 |
| commit | 75aba19165cbe890e600cb9f04e04a3dd865e6a2 (patch) | |
| tree | 5d7686dca9dcf01f094ac7ed41dd0ee0841867ad /setup.py | |
init
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 22 |
1 files changed, 22 insertions, 0 deletions
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']}) |
