22 lines
443 B
Python
22 lines
443 B
Python
|
#!/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'
|
||
|
]
|
||
|
},
|
||
|
)
|