- Contains the host code with a protocol implementation, data analyser and web-based visualiser
52 lines
1.5 KiB
Python
52 lines
1.5 KiB
Python
"""Setup script for MiniProfiler host application."""
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
with open("../README.md", "r", encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name="miniprofiler",
|
|
version="0.1.0",
|
|
author="MiniProfiler Contributors",
|
|
description="Host application for embedded STM32 profiling",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/yourusername/miniprofiler",
|
|
packages=find_packages(),
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Topic :: Software Development :: Embedded Systems",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
],
|
|
python_requires=">=3.8",
|
|
install_requires=[
|
|
"Flask>=3.0.0",
|
|
"Flask-SocketIO>=5.3.0",
|
|
"pyserial>=3.5",
|
|
"pyelftools>=0.29",
|
|
"crc>=6.1.1",
|
|
"python-socketio>=5.10.0",
|
|
"eventlet>=0.33.3",
|
|
],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"miniprofiler=miniprofiler.cli:main",
|
|
],
|
|
},
|
|
include_package_data=True,
|
|
package_data={
|
|
"miniprofiler": [
|
|
"../web/templates/*.html",
|
|
"../web/static/css/*.css",
|
|
"../web/static/js/*.js",
|
|
],
|
|
},
|
|
)
|