tasi 0.1.0__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.
- tasi-0.1.0/LICENSE +13 -0
- tasi-0.1.0/PKG-INFO +26 -0
- tasi-0.1.0/README.md +7 -0
- tasi-0.1.0/pyproject.toml +72 -0
- tasi-0.1.0/tasi/__init__.py +8 -0
- tasi-0.1.0/tasi/_version.py +683 -0
- tasi-0.1.0/tasi/dataset.py +294 -0
- tasi-0.1.0/tasi/dlr/__init__.py +1 -0
- tasi-0.1.0/tasi/dlr/dataset.py +395 -0
- tasi-0.1.0/tasi/logging.py +38 -0
- tasi-0.1.0/tasi/utils.py +56 -0
tasi-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright 2024 DLR-TS
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|
tasi-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: tasi
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Library for Traffic Analysis and Situation Interpretation
|
|
5
|
+
Author: Lars Klitzke
|
|
6
|
+
Author-email: lars.klitzke@dlr.de
|
|
7
|
+
Requires-Python: >=3.12.0,<4.0.0
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
11
|
+
Requires-Dist: coloredlogs (>=15.0.1,<16.0.0)
|
|
12
|
+
Requires-Dist: matplotlib (==3.9.2)
|
|
13
|
+
Requires-Dist: numba (==0.60.0)
|
|
14
|
+
Requires-Dist: numpy (==2.0.2)
|
|
15
|
+
Requires-Dist: pandas (==2.2.3)
|
|
16
|
+
Requires-Dist: typing-extensions (==4.12.2)
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# TrAffic Situation analysis and Interpretation
|
|
20
|
+
TASI is a library to provide high-performance, easy-to-use data structures and data analysis tools for Python based
|
|
21
|
+
traffic situation analysis and interpretation applications.
|
|
22
|
+
|
|
23
|
+
> **TASI** is backed by those wonderful libraries [`Numpy`](https://numpy.org/), [`Pandas`](https://pandas.pydata.org/),
|
|
24
|
+
> and [`Numba`](http://numba.pydata.org/)
|
|
25
|
+
|
|
26
|
+
|
tasi-0.1.0/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# TrAffic Situation analysis and Interpretation
|
|
2
|
+
TASI is a library to provide high-performance, easy-to-use data structures and data analysis tools for Python based
|
|
3
|
+
traffic situation analysis and interpretation applications.
|
|
4
|
+
|
|
5
|
+
> **TASI** is backed by those wonderful libraries [`Numpy`](https://numpy.org/), [`Pandas`](https://pandas.pydata.org/),
|
|
6
|
+
> and [`Numba`](http://numba.pydata.org/)
|
|
7
|
+
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = [ "poetry-core",]
|
|
3
|
+
build-backend = "poetry.core.masonry.api"
|
|
4
|
+
|
|
5
|
+
[tool.poetry]
|
|
6
|
+
name = "tasi"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Library for Traffic Analysis and Situation Interpretation"
|
|
9
|
+
authors = [ "Lars Klitzke <lars.klitzke@dlr.de>", "Clemens Schicktanz <clemens.schicktanz@dlr.de",]
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
|
|
12
|
+
[tool.versioneer]
|
|
13
|
+
VCS = "git"
|
|
14
|
+
style = "pep440"
|
|
15
|
+
versionfile_source = "tasi/_version.py"
|
|
16
|
+
versionfile_build = "tasi/_version.py"
|
|
17
|
+
tag_prefix = "v"
|
|
18
|
+
parentdir_prefix = "tasi-"
|
|
19
|
+
|
|
20
|
+
[tool.autopep8]
|
|
21
|
+
max_line_length = 100
|
|
22
|
+
ignore = "E501,W6"
|
|
23
|
+
in-place = true
|
|
24
|
+
recursive = true
|
|
25
|
+
aggressive = 3
|
|
26
|
+
|
|
27
|
+
[tool.poetry.dependencies]
|
|
28
|
+
python = "^3.12.0"
|
|
29
|
+
pandas = "2.2.3"
|
|
30
|
+
numpy = "2.0.2"
|
|
31
|
+
numba = "0.60.0"
|
|
32
|
+
typing-extensions = "4.12.2"
|
|
33
|
+
coloredlogs = "^15.0.1"
|
|
34
|
+
matplotlib = "3.9.2"
|
|
35
|
+
|
|
36
|
+
[tool.poetry.scripts]
|
|
37
|
+
dlr-downloader = "tasi.dlr.dataset:download"
|
|
38
|
+
|
|
39
|
+
[tool.poetry.group.test.dependencies]
|
|
40
|
+
coverage = "^7.6.4"
|
|
41
|
+
ipython = "^8.18.1"
|
|
42
|
+
pytest = "^8.3.3"
|
|
43
|
+
pytest-xdist = "^3.6.1"
|
|
44
|
+
pytest-cov = "^5.0.0"
|
|
45
|
+
|
|
46
|
+
[tool.poetry.group.dev.dependencies]
|
|
47
|
+
pylint = "^3.3.1"
|
|
48
|
+
autopep8 = "^2.3.1"
|
|
49
|
+
|
|
50
|
+
[tool.poetry.group.build.dependencies]
|
|
51
|
+
wheel = "*"
|
|
52
|
+
toml = "*"
|
|
53
|
+
|
|
54
|
+
[tool.poetry.group.docs.dependencies]
|
|
55
|
+
ipython = "^8.18.1"
|
|
56
|
+
sphinx = "7.4.7"
|
|
57
|
+
nbsphinx = "0.8.12"
|
|
58
|
+
pydata-sphinx-theme = "^0.15.4"
|
|
59
|
+
docutils = "*"
|
|
60
|
+
markdown = "*"
|
|
61
|
+
markdown-it-py = "*"
|
|
62
|
+
pymdown-extensions = "*"
|
|
63
|
+
sphinxcontrib-apidoc = "*"
|
|
64
|
+
sphinx-copybutton = "*"
|
|
65
|
+
sphinx_markdown_parser = "*"
|
|
66
|
+
sphinx-gallery = "0.18.0"
|
|
67
|
+
myst-parser = "3.0.1"
|
|
68
|
+
numpydoc = "1.8.0"
|
|
69
|
+
sphinx-toggleprompt = "0.5.2"
|
|
70
|
+
ipykernel = "*"
|
|
71
|
+
jupytext = "^1.16.4"
|
|
72
|
+
sphinxemoji = "^0.3.1"
|