-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 1.09 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
25
26
27
28
29
30
31
32
33
34
35
"""
Owner: battleoverflow (https://github.com/battleoverflow)
Project: Droid (https://github.com/battleoverflow/droid)
License: MIT
"""
import setuptools
with open("README.md", "r", encoding = "utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name = "droid",
version = "1.4.22",
author = "battleoverflow",
description = "Droid is a remote communication application created to communicate with Android devices on the local network over the Android debug bridge (adb). Available as a CLI or GUI.",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/battleoverflow/droid",
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages = ["droid"],
install_requires=[
"argparse",
"customtkinter==4.6.3"
],
scripts=["droid/main.py"],
entry_points={
"console_scripts": ["droid=droid.main:Droid.main"]
},
python_requires = ">=3.6"
)