This repository has been archived on 2023-09-06. You can view files and clone it, but cannot push or open issues/pull-requests.
yutent
/
py-gtk-notes
Archived
1
0
Fork 0
py-gtk-notes/setup.py

22 lines
443 B
Python
Executable File

#!/usr/bin/python3
from setuptools import setup
setup(
name='myapp',
version='0.1',
description='My GTK3 + WebKit2 application',
author='Your Name',
author_email='your@email.com',
url='https://github.com/yourusername/myapp',
py_modules=['main'],
install_requires=[
'gi',
'webkit2gtk',
],
entry_points={
'gui_scripts': [
'myapp=main:WebKitWindow'
]
},
)
python + gtk3 + webkit2 学习笔记
Python 60.1%
JavaScript 37.6%
HTML 2.3%