forked from nishowsan/python-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 741 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
l_d = '''
Electron is a technology developed by https://www.github.com/ . Which you can use
to render html5 and javascript as a desktop app . But it uses node js . I have used
PyQt5 for the shell and it is written with pure python so enjoy . For documentation visit
http://github.com/nishowsan/python-electron .
'''
setup(name='pytron',
version='1.0',
description='Make desktop app with html5 and JS using python and pytron',
long_description=l_d,
url='http://github.com/nishowsan/python-electron',
author='Adib Mohsin',
author_email='md.nishow@gmail.com',
license='MIT',
packages=['pytron'],
requires= ['pyqt5'],
zip_safe=False)