forked from fake-name/ChromeController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (34 loc) · 904 Bytes
/
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
import setuptools
from distutils.core import setup
import sys
import time
setup(
# Application name:
name="ChromeController",
# Version number (initial):
version="0.1.2",
# Application author details:
author="Connor Wolf ",
author_email="github@imaginaryindustries.com",
# Packages
packages=setuptools.find_packages(),
package_dir = {'ChromeController': 'ChromeController'},
# Bundle the protocol json files.
package_data={'ChromeController': ['protocols/*.json']},
# Details
url="https://github.com/fake-name/ChromeController",
#
# license="LICENSE.txt",
description="Chrome Remote Debugger interface.",
long_description=open("README.md").read(),
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',
],
)