This repository was archived by the owner on Oct 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (41 loc) · 1.45 KB
/
setup.py
File metadata and controls
46 lines (41 loc) · 1.45 KB
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
import json
from pathlib import Path
from glob import glob
import setuptools
HERE = Path(__file__).parent.resolve()
name = "jupyterlab_vre"
labext_name = "jupyterlab_vre"
long_description = (HERE / "README.md").read_text()
pkg_json = json.loads((HERE / "package.json").read_bytes())
frontend_packages_path = "./dist/*.tgz"
jupyter_config_path = './jupyter-config/*.json'
setup_args = dict(
name=name,
version="0.1.0",
url="https://github.com/QCDIS/NaaVRE",
author="R. Bianchi,S. Koulouzis, G. Pelouze",
author_email="S.Koulouzis@uva.nl",
description="Jupyter Lab extension for virtual research environments",
license="BSD-3-Clause",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
data_files=[('etc/jupyter/jupyter_server_config.d', glob(jupyter_config_path)),
('share/jupyter/lab/extensions', glob(frontend_packages_path))],
install_requires=[
],
zip_safe=False,
include_package_data=True,
python_requires=">=3.8",
platforms="Linux, Mac OS X, Windows",
keywords=["Jupyter", "JupyterLab", "JupyterLab3"],
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Jupyter",
],
)
if __name__ == "__main__":
setuptools.setup(**setup_args)