Skip to content

Commit

Permalink
add compiled app
Browse files Browse the repository at this point in the history
  • Loading branch information
supimadi committed Nov 21, 2023
1 parent 1ebc542 commit 0bfd865
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
Binary file added Output/setup.exe
Binary file not shown.
Binary file added fmcw/asset/images/logo.ico
Binary file not shown.
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
from distutils.core import setup

setup(
name="fmcw",
version="1.0.0",
description="Application for reading OmniPresence Radar.",
long_description="README.md",
long_description_content_type="text/markdown",
url="https://github.com/rc-iot-telu/fmcw",
author="PUI-PT Intelligent Sensing IoT",
license="Apache 2",
classifiers=[
"License :: OSI Approved :: Apache 2 License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
packages=["reader"],
include_package_data=True,
entry_points={"console_scripts": ["realpython=main:main"]},
)

0 comments on commit 0bfd865

Please sign in to comment.