eulumdat-luminance 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.
- eulumdat_luminance-0.0.1/PKG-INFO +31 -0
- eulumdat_luminance-0.0.1/README.md +11 -0
- eulumdat_luminance-0.0.1/pyproject.toml +32 -0
- eulumdat_luminance-0.0.1/setup.cfg +4 -0
- eulumdat_luminance-0.0.1/src/eulumdat_luminance/__init__.py +1 -0
- eulumdat_luminance-0.0.1/src/eulumdat_luminance.egg-info/PKG-INFO +31 -0
- eulumdat_luminance-0.0.1/src/eulumdat_luminance.egg-info/SOURCES.txt +8 -0
- eulumdat_luminance-0.0.1/src/eulumdat_luminance.egg-info/dependency_links.txt +1 -0
- eulumdat_luminance-0.0.1/src/eulumdat_luminance.egg-info/requires.txt +5 -0
- eulumdat_luminance-0.0.1/src/eulumdat_luminance.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: eulumdat-luminance
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Luminance table generation from EULUMDAT (.ldt) photometric files — extension to eulumdat-py
|
|
5
|
+
Author: 123VincentB
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/123VincentB/eulumdat-luminance
|
|
8
|
+
Keywords: eulumdat,ldt,photometry,lighting,luminance,cd/m2,glare
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
Requires-Dist: eulumdat-py>=1.0.0
|
|
17
|
+
Provides-Extra: dev
|
|
18
|
+
Requires-Dist: build; extra == "dev"
|
|
19
|
+
Requires-Dist: twine; extra == "dev"
|
|
20
|
+
|
|
21
|
+
# eulumdat-luminance
|
|
22
|
+
|
|
23
|
+
Luminance table generation from EULUMDAT (.ldt) photometric files — extension to [eulumdat-py](https://pypi.org/project/eulumdat-py/).
|
|
24
|
+
|
|
25
|
+
> ⚠️ This package is under development. Not yet functional.
|
|
26
|
+
|
|
27
|
+
## Planned features
|
|
28
|
+
|
|
29
|
+
- Luminance table (cd/m²) for gamma angles 55° to 85° across C0° to C360°
|
|
30
|
+
- Configurable angle steps
|
|
31
|
+
- CSV / tabular export
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# eulumdat-luminance
|
|
2
|
+
|
|
3
|
+
Luminance table generation from EULUMDAT (.ldt) photometric files — extension to [eulumdat-py](https://pypi.org/project/eulumdat-py/).
|
|
4
|
+
|
|
5
|
+
> ⚠️ This package is under development. Not yet functional.
|
|
6
|
+
|
|
7
|
+
## Planned features
|
|
8
|
+
|
|
9
|
+
- Luminance table (cd/m²) for gamma angles 55° to 85° across C0° to C360°
|
|
10
|
+
- Configurable angle steps
|
|
11
|
+
- CSV / tabular export
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "eulumdat-luminance"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Luminance table generation from EULUMDAT (.ldt) photometric files — extension to eulumdat-py"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
authors = [{ name = "123VincentB" }]
|
|
12
|
+
requires-python = ">=3.9"
|
|
13
|
+
dependencies = [
|
|
14
|
+
"eulumdat-py>=1.0.0",
|
|
15
|
+
]
|
|
16
|
+
keywords = ["eulumdat", "ldt", "photometry", "lighting", "luminance", "cd/m2", "glare"]
|
|
17
|
+
classifiers = [
|
|
18
|
+
"Development Status :: 1 - Planning",
|
|
19
|
+
"Intended Audience :: Science/Research",
|
|
20
|
+
"Topic :: Scientific/Engineering :: Physics",
|
|
21
|
+
"License :: OSI Approved :: MIT License",
|
|
22
|
+
"Programming Language :: Python :: 3",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[project.urls]
|
|
26
|
+
Homepage = "https://github.com/123VincentB/eulumdat-luminance"
|
|
27
|
+
|
|
28
|
+
[project.optional-dependencies]
|
|
29
|
+
dev = [
|
|
30
|
+
"build",
|
|
31
|
+
"twine",
|
|
32
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# placeholder
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: eulumdat-luminance
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Luminance table generation from EULUMDAT (.ldt) photometric files — extension to eulumdat-py
|
|
5
|
+
Author: 123VincentB
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/123VincentB/eulumdat-luminance
|
|
8
|
+
Keywords: eulumdat,ldt,photometry,lighting,luminance,cd/m2,glare
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
Requires-Dist: eulumdat-py>=1.0.0
|
|
17
|
+
Provides-Extra: dev
|
|
18
|
+
Requires-Dist: build; extra == "dev"
|
|
19
|
+
Requires-Dist: twine; extra == "dev"
|
|
20
|
+
|
|
21
|
+
# eulumdat-luminance
|
|
22
|
+
|
|
23
|
+
Luminance table generation from EULUMDAT (.ldt) photometric files — extension to [eulumdat-py](https://pypi.org/project/eulumdat-py/).
|
|
24
|
+
|
|
25
|
+
> ⚠️ This package is under development. Not yet functional.
|
|
26
|
+
|
|
27
|
+
## Planned features
|
|
28
|
+
|
|
29
|
+
- Luminance table (cd/m²) for gamma angles 55° to 85° across C0° to C360°
|
|
30
|
+
- Configurable angle steps
|
|
31
|
+
- CSV / tabular export
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
src/eulumdat_luminance/__init__.py
|
|
4
|
+
src/eulumdat_luminance.egg-info/PKG-INFO
|
|
5
|
+
src/eulumdat_luminance.egg-info/SOURCES.txt
|
|
6
|
+
src/eulumdat_luminance.egg-info/dependency_links.txt
|
|
7
|
+
src/eulumdat_luminance.egg-info/requires.txt
|
|
8
|
+
src/eulumdat_luminance.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
eulumdat_luminance
|