-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
48 lines (44 loc) · 1.3 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
44
45
46
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='pyqtlet2',
version='0.9.3',
description='Bringing leaflet maps to Python Qt bindings',
long_description=long_description,
long_description_content_type="text/markdown",
author='Leon Friedmann',
author_email='leon.friedmann@tum.de',
url='https://github.com/JaWeilBaum/pyqtlet2',
keywords='leaflet, qtpy, maps, python, python3',
classifiers=[],
packages=[
'pyqtlet2',
'pyqtlet2.leaflet',
'pyqtlet2.leaflet.control',
'pyqtlet2.leaflet.core',
'pyqtlet2.leaflet.layer',
'pyqtlet2.leaflet.layer.marker',
'pyqtlet2.leaflet.layer.tile',
'pyqtlet2.leaflet.layer.vector',
'pyqtlet2.leaflet.layer.icon',
'pyqtlet2.leaflet.map',
],
package_data={
'pyqtlet2': [
'web/map.html',
'web/custom.js',
'web/modules/*/*',
'web/modules/*/images/*',
],
},
install_requires=[
'QtPy>=2.0.1'
],
extras_require = {
'PyQt5' : ['PyQt5>=5.15.5','PyQtWebEngine>=5.15.5'],
'PyQt6' : ['PyQt6>=6.2.0','PyQt6-WebEngine>=6.2.0'],
'PySide2': ['PySide2'],
'PySide6': ['PySide6']
}
)