forked from ksharindam/quartz-browser-qt5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (40 loc) · 1.36 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
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup
import platform
from quartz_browser import __version__
def readme():
with open('README.md') as f:
return f.read()
if platform.system()=='Linux':
app_data = [('share/applications', ['files/quartz-browser.desktop']),
('share/icons', ['files/quartz-browser.png'])]
else:
app_data = []
setup(
name='quartz-browser',
version=__version__,
description='Fast Lightweight web browser written in PyQt5',
long_description=readme(),
long_description_content_type = 'text/markdown',
keywords='pyqt pyqt5 browser qtwebkit',
url='http://github.com/ksharindam/quartz-browser-qt5',
author='Arindam Chaudhuri',
author_email='[email protected]',
license='GNU GPLv3',
#install_requires=['PyQt5',],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications :: Qt',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Browsers',
],
packages=['quartz_browser'],
entry_points={
'console_scripts': ['quartz_browser=quartz_browser.main:main'],
},
data_files = app_data,
include_package_data=True,
zip_safe=False
)