-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (60 loc) · 1.84 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import os
from subprocess import check_call
from setuptools import find_packages, setup
from setuptools.command.build_py import build_py
from setuptools.command.sdist import sdist
HERE = os.path.dirname(__file__)
with open("README.md") as f:
readme = f.read()
setup(
name="jupyter-remote-qgis-proxy",
packages=find_packages(),
version='0.0.1',
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
description="Run QGIS in a desktop environments on Jupyter",
entry_points={
'jupyter_serverproxy_servers': [
'qgis-websockify = jupyter_remote_qgis_proxy.setup_websockify:setup_websockify',
]
},
install_requires=[
'jupyter-server-proxy>=4.1.1',
'jupyter-remote-desktop-proxy',
],
include_package_data=True,
keywords=["Interactive", "Desktop", "Jupyter"],
license="BSD",
long_description=readme,
long_description_content_type="text/markdown",
platforms="Linux",
python_requires=">=3.8",
url="https://jupyter.org",
zip_safe=False,
data_files=[
(
'etc/jupyter/jupyter_server_config.d',
[
'jupyter-config/jupyter_server_config.d/jupyter_remote_qgis_proxy.json'
],
),
(
'etc/jupyter/jupyter_notebook_config.d',
[
'jupyter-config/jupyter_notebook_config.d/jupyter_remote_qgis_proxy.json'
],
),
(
'etc/jupyter/jupyter_remote_qgis_proxy.d',
[
'jupyter_remote_qgis_proxy/qgis/scripts/maximize.py',
]
)
],
)