-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.19 KB
/
setup.py
File metadata and controls
40 lines (37 loc) · 1.19 KB
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
36
37
38
39
40
from setuptools import setup, find_packages
import os
import re
# Hardcoded version for now
version = '1.0.4'
# Read long description from README.md
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name="snapdroid",
version=version,
description="Android Screenshot and Screen Recording Tool",
long_description=long_description,
long_description_content_type="text/markdown",
author="Siddharth Joshi",
url="https://github.com/dr34mhacks/snapdroid",
packages=find_packages(),
entry_points={
"console_scripts": [
"snapdroid=snapdroid.snapdroid:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"Topic :: Software Development :: Testing",
"Topic :: System :: Monitoring",
],
python_requires=">=3.6",
keywords="android, screenshot, screen recording, adb, testing, security",
)