22 lines
443 B
Python
Executable File
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
60.1%
JavaScript
37.6%
HTML
2.3%