-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsetup.py
62 lines (48 loc) · 1.31 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import setuptools
from distutils.core import setup
import sys
import time
win_req = ["pywin32"] if sys.platform.startswith("win") else []
setup(
# Application name:
name="ChromeController",
# Version number (initial):
version="0.3.33",
# Application author details:
author="Connor Wolf",
author_email="[email protected]",
# Packages
packages=setuptools.find_packages(),
package_dir = {'ChromeController': 'ChromeController'},
# Bundle the protocol json files.
package_data={
'ChromeController': [
'protocols/*.json',
'resources/evasions/*.js'
]},
# Details
url="https://github.com/fake-name/ChromeController",
#
# license="LICENSE.txt",
description="Chrome Remote Debugger interface.",
long_description=open("README.md").read(),
long_description_content_type = "text/markdown",
# dependency_links=[
# 'https://github.com/berkerpeksag/astor/tarball/master#egg=astor-0.6',
# ],
# Dependent packages (distributions)
install_requires=[
'websocket-client',
'astor>=0.6',
'requests',
'cachetools',
'docopt',
# We need pywin32 on windows for proper process termination.
] + win_req,
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
],
)