blisswebui 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- blisswebui-0.0.1/PKG-INFO +17 -0
- blisswebui-0.0.1/README.md +5 -0
- blisswebui-0.0.1/pyproject.toml +36 -0
- blisswebui-0.0.1/pysrc/blisswebui/__init__.py +1 -0
- blisswebui-0.0.1/pysrc/blisswebui/static/assets/bliss-a0afec9e.svg +1 -0
- blisswebui-0.0.1/pysrc/blisswebui/static/assets/fa-brands-400-808443ae.ttf +0 -0
- blisswebui-0.0.1/pysrc/blisswebui/static/assets/fa-brands-400-d7236a19.woff2 +0 -0
- blisswebui-0.0.1/pysrc/blisswebui/static/assets/fa-regular-400-54cf6086.ttf +0 -0
- blisswebui-0.0.1/pysrc/blisswebui/static/assets/fa-regular-400-e3456d12.woff2 +0 -0
- blisswebui-0.0.1/pysrc/blisswebui/static/assets/fa-solid-900-aa759986.woff2 +0 -0
- blisswebui-0.0.1/pysrc/blisswebui/static/assets/fa-solid-900-d2f05935.ttf +0 -0
- blisswebui-0.0.1/pysrc/blisswebui/static/assets/fa-v4compatibility-0ce9033c.woff2 +0 -0
- blisswebui-0.0.1/pysrc/blisswebui/static/assets/fa-v4compatibility-30f6abf6.ttf +0 -0
- blisswebui-0.0.1/pysrc/blisswebui/static/assets/fontawesomemore-webfont-37976d8d.woff2 +0 -0
- blisswebui-0.0.1/pysrc/blisswebui/static/assets/index-12d83788.js +109 -0
- blisswebui-0.0.1/pysrc/blisswebui/static/assets/index-982573c4.css +9 -0
- blisswebui-0.0.1/pysrc/blisswebui/static/assets/pxiEyp8kv8JHgFVrJJbecnFHGPezSQ-0cd83f4b.woff2 +0 -0
- blisswebui-0.0.1/pysrc/blisswebui/static/assets/pxiEyp8kv8JHgFVrJJfecnFHGPc-fab32cce.woff2 +0 -0
- blisswebui-0.0.1/pysrc/blisswebui/static/assets/pxiEyp8kv8JHgFVrJJnecnFHGPezSQ-5d28e623.woff2 +0 -0
- blisswebui-0.0.1/pysrc/blisswebui/static/favicon.ico +0 -0
- blisswebui-0.0.1/pysrc/blisswebui/static/index.html +15 -0
- blisswebui-0.0.1/pysrc/blisswebui.egg-info/PKG-INFO +17 -0
- blisswebui-0.0.1/pysrc/blisswebui.egg-info/SOURCES.txt +24 -0
- blisswebui-0.0.1/pysrc/blisswebui.egg-info/dependency_links.txt +1 -0
- blisswebui-0.0.1/pysrc/blisswebui.egg-info/top_level.txt +1 -0
- blisswebui-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: blisswebui
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Web User Interface for BLISS
|
|
5
|
+
Author-email: ESRF <bcu@esrf.fr>
|
|
6
|
+
Project-URL: Repository, https://gitlab.esrf.fr/bliss/blisswebui
|
|
7
|
+
Classifier: Intended Audience :: Science/Research
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.8
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# blisswebui
|
|
14
|
+
|
|
15
|
+

|
|
16
|
+
|
|
17
|
+
blisswebui provides a simple web user interface to consume the bliss rest api.
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=46.4"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "blisswebui"
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
authors = [{ name = "ESRF", email = "bcu@esrf.fr" }]
|
|
9
|
+
description = "Web User Interface for BLISS"
|
|
10
|
+
readme = { file = "README.md", content-type = "text/markdown" }
|
|
11
|
+
license = { file = "LICENSE.md" }
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Intended Audience :: Science/Research",
|
|
14
|
+
"License :: OSI Approved :: MIT License",
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
]
|
|
17
|
+
requires-python = ">=3.8"
|
|
18
|
+
|
|
19
|
+
[project.urls]
|
|
20
|
+
Repository = "https://gitlab.esrf.fr/bliss/blisswebui"
|
|
21
|
+
|
|
22
|
+
[tool.setuptools.dynamic]
|
|
23
|
+
version = {attr = "blisswebui.__version__"}
|
|
24
|
+
|
|
25
|
+
[tool.setuptools]
|
|
26
|
+
package-dir = { "" = "pysrc" }
|
|
27
|
+
|
|
28
|
+
[tool.setuptools.packages.find]
|
|
29
|
+
where = ["pysrc"]
|
|
30
|
+
|
|
31
|
+
[tool.setuptools.package-data]
|
|
32
|
+
"blisswebui" = [
|
|
33
|
+
'static/*',
|
|
34
|
+
'static/*/*.*',
|
|
35
|
+
'static/*/*/*.*',
|
|
36
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="111.35" height="130.85"><defs><clipPath id="a"><path d="M0 841.89h595.28V0H0Z"/></clipPath><clipPath id="b"><path d="M284.96 234.64h131.13v-82.125H284.96z"/></clipPath><clipPath id="c"><path d="M276.33 247.68h17.333v-14.517H276.33z"/></clipPath><clipPath id="d"><path d="M254.67 247.72h19.5v-26.042h-19.5z"/></clipPath><clipPath id="e"><path d="M248.21 227.35h33.167v-19H248.21z"/></clipPath><clipPath id="f"><path d="M282.3 241.52h22.293v-8.079H282.3z"/></clipPath></defs><path fill="#272a7c" d="M52.43 121.77c-9.83.025-19.714-.364-29.492-.078C31.205 81.767 39.48 41.815 47.743 1.887l28.476-.078c11.056.052 24.337.913 29.882 12.266 6.837 15.227 1.622 37.065-14.649 43.985-8.364.898-.02 3.864 3.164 5.156 10.08 6.645 10.365 20.321 8.125 30.976-.91 11.81-9.62 22.118-21.055 25.118-9.646 1.988-19.428 2.436-29.257 2.46zm56.094-13.554c-72.345 15.077-36.173 7.539 0 0z"/><path fill="#272a7c" d="m133.51-114.59.375 1.813 2.688 13.061c.247.98.507 2.44.78 3.594l16.376 79.156.218 1.188h1.22c8.103.015 16.207.094 24.311.094l-.141.008c9.157-.158 15.9-1.68 19.906-5.5 4.161-3.878 6.329-9.524 6.329-16.414 0-2.505-.17-4.899-.531-7.156v-.032c-.828-4.868-2.925-9.216-6.22-12.969-2.275-2.6-5.088-4.538-8.312-5.875 3.128-1.378 5.598-3.182 7.313-5.5.009-.01.022-.02.03-.031 2.529-3.23 3.688-7.75 3.688-13.406 0-2.694-.282-5.587-.812-8.687-.002-.011.002-.021 0-.032-1.358-8.643-5.331-15.077-11.812-18.78-6.452-3.648-15.702-4.532-26.906-4.532h-28.5zm3.688 3h24.811c11.032 0 19.902 1.027 25.439 4.156 5.67 3.241 9.09 8.638 10.343 16.656.509 2.967.75 5.71.75 8.219 0 5.268-1.092 9.093-3.062 11.594l-.031.031c-1.912 2.6-5.169 4.606-10 5.938l.093 2.906c4.588.984 8.166 3.105 11 6.344 2.96 3.371 4.795 7.131 5.532 11.469.333 2.086.5 4.328.5 6.687 0 6.314-1.768 10.91-5.25 14.156-3.236 3.085-9.69 4.75-19.344 4.75h-1.5l-20.062-.094-16.188-78.188-.032-.187-.062-.156-.188-.375.125-.032-.28-1.312-2.595-12.562z" color="#000" style="text-decoration-line:none;text-indent:0;text-transform:none" transform="matrix(1.25 0 0 -1.25 -145.97 -19.592)"/><path fill="#46ac32" stroke="#fff" stroke-width="1.1" d="M69.63 52.42c-7.216.068-12.311 6.126-16.125 11.54-5.356 5.811-11.993 10.269-17.923 15.47-2.569 2.754-7.153 4.56-7.838 8.512 1.952 4.715-2.47 7.48-5.249 10.455-6.955 7.178-14.45 13.949-20.336 22.07-1.875 2.093-2.795 6.654 1.15 6.456 1.22 1.149 2.135 1.155 1.792 3.103 3.62-1.24 6.568-4.06 9.638-6.33 7.79-6.407 14.175-14.358 22.067-20.63 6.669-5.107 15.009-6.95 22.506-10.386 6.107-3.445 10.954-9.235 12.308-16.224 1.42-4.66.99-10.193 3.852-14.16 4.04-1.07 8.265-1.763 12.313-2.656-3.39-.539-6.778-1.078-10.125-1.844-.254-3.803-4.797-5.355-8.031-5.375z"/><g clip-path="url(#a)" transform="matrix(1.25 0 0 -1.25 -271.97 310.408)"><g clip-path="url(#b)" opacity=".7"><path fill="#fff" d="m286.657 233.72 19.191-14.495.81 3.277-.316 3.66z"/></g><g clip-path="url(#d)" opacity=".5" transform="matrix(1.048 0 0 1 -13.146 0)"><path fill="#fff" d="m273.816 222.387-19.146 17.376 1.667 7.875 9.25.084z"/></g><path fill="#283172" d="M273.69 202.39a1.374 1.374 0 1 0-2.748-.002 1.374 1.374 0 0 0 2.748.002"/><g clip-path="url(#e)" opacity=".8" transform="matrix(1.0241 0 0 1 -6.752 0)"><path fill="#fff" d="m280.531 217.696-32.318-9.345 3.917 19z"/></g><g clip-path="url(#f)" opacity=".8" transform="scale(1.0443 1) rotate(2.252 277.733 -93.74)"><path fill="#fff" d="m282.167 235.266 18.34 6.253s1.421-1.484 2.543-3.662c1.27-2.463 1.542-4.417 1.542-4.417z"/></g><path fill="#46ac32" stroke="#fff" stroke-width=".88" d="M290.45 226.522a8.776 8.776 0 1 0-17.552.002 8.776 8.776 0 0 0 17.552-.002"/></g><path fill="#fff" d="M88.093 1.632S84.17.857 80.572.742C76.595.439 72.76.768 72.76.768L71.288 20.86z" opacity=".5"/></svg>
|