-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 732 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 732 Bytes
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
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="pyadb",
version="2.0.0jo",
author="Chema Garcia",
author_email="chema@safetybits.net",
description=(
"Simple python module to interact with Android Debug Bridge tool"),
license="BSD",
keywords="python android adb",
url="https://github.com/sch3m4/pyadb",
packages=['pyadb'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 4 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
)