-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
31 lines (29 loc) · 1.08 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except Exception:
return "Not available"
setup(
name="electron-inject",
version="0.7",
packages=["electron_inject"],
author="tintinweb",
author_email="tintinweb@oststrom.com",
description=(
"An electron application wrapper that utilizes the remote debug console to inject code into electron applications to enable developer tools"),
license="GPLv3",
keywords=["electron", "inject", "devtools", "developer tools"],
url="https://github.com/tintinweb/electron-inject/",
download_url="https://github.com/tintinweb/electron-inject/tarball/v0.6",
#python setup.py register -r https://testpypi.python.org/pypi
long_description=read("README.md"),
long_description_content_type='text/markdown',
install_requires=['websocket-client','requests'],
package_data = {
'electron_inject': ['electron_inject'],
},
)