-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
setup(
name="GoPro App",
version="1.2.2",
author="Nabeel Chowdhury",
author_email="nabeel.chowdhury@case.edu",
py_modules=["GoPro App"],
description="App to control the video from a GoPro",
long_description='''Application to set video parameters and to start and
stop video wirelessly. This is meant to preserve the battery life of the
GoPro for as long as possible without having to directly interact with the
GoPro. This product and/or service is not affiliated with, endorsed by or
in any way associated with GoPro Inc. or its products and services. GoPro,
HERO, and their respective logos are trademarks or registered trademarks
of GoPro, Inc.''',
license="MIT",
keywords=["GoPro", "video", "wireless"],
url="https://github.com/iSensTeam/GoPro-App",
download_url="https://github.com/iSensTeam/GoPro-App/tree/main/Code/dist",
install_requires=["open-gopro==0.12.0", "customtkinter==5.0.4",
"pyinstaller==5.7.0"],
platforms="windows",
)