Merge pull request #2754 from ExpressLRS/merge-3.4.2-into-master
[ExpressLRS.git] / src / python / setup.py
blob1de3cf0cffddd8690b10bdb58f0f3a351579d2c4
1 import setuptools
2 setuptools.setup(
3 name="binary_configurator",
4 version="3.4.0",
5 author="ExpressLRS Team",
6 author_email="",
7 description="ExpressLRS Binary Installer",
8 long_description='ExpressLRS binary configurator and flasher tool all-in-one',
9 long_description_content_type="text/markdown",
10 url="https://github.com/ExpressLRS/ExpressLRS",
11 packages=['.'] + setuptools.find_packages(),
12 include_package_data=True,
13 entry_points={
14 "console_scripts": ["flash=binary_configurator:main"],
16 install_requires=['pyserial'],
17 classifiers=[
18 "Programming Language :: Python :: 3",
19 "Operating System :: OS Independent",
21 python_requires='>=3.6',