aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py22
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']})