Skip to content

Commit

Permalink
Merge pull request #551 from OpenTrafficCam/feature/2056-update-metad…
Browse files Browse the repository at this point in the history
…ata-in-pyprojecttoml

feature 2056 update metadata in pyprojecttoml
  • Loading branch information
randy-seng committed Aug 27, 2024
2 parents e90f7ff + 69e5328 commit 7dec8a2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 10 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: Benchmark Test With Pytest
on:
schedule:
Expand All @@ -20,7 +21,11 @@ jobs:
with:
python-version: 3.11
- name: Download test data
run: gh release download --pattern '*.zip' -R platomo/OpenTrafficCam-testdata -D tests/data
run: |
gh release download \
--pattern 'OTCamera19_FR20_2023-05-24_06-00-00_11-45-00.zip' \
--pattern 'OTCamera19_FR20_2023-05-24_00-00-00.zip' \
-R platomo/OpenTrafficCam-testdata -D tests/data
env:
GH_TOKEN: ${{ secrets.PLATOMO_OTC_TESTDATA_ACCESS }}
- name: Unzip test data
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/regression-test.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: Regression Test With Pytest
on:
pull_request:
Expand All @@ -17,7 +18,11 @@ jobs:
with:
python-version: 3.11
- name: Download test data
run: gh release download --pattern '*.zip' -R platomo/OpenTrafficCam-testdata -D tests/data
run: |
gh release download \
--pattern 'OTCamera19_FR20_2023-05-24_06-00-00_11-45-00.zip' \
--pattern 'OTCamera19_FR20_2023-05-24_00-00-00.zip' \
-R platomo/OpenTrafficCam-testdata -D tests/data
env:
GH_TOKEN: ${{ secrets.PLATOMO_OTC_TESTDATA_ACCESS }}
- name: Unzip test data
Expand Down
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,31 @@ requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"

[project]
name = "OTAnalytics-EXAMPLE-TEST-DISTRIBUTION"
name = "OTAnalytics"
dynamic = ["dependencies", "version"]
authors = [
{ name="Martin Bärwolff", email="martin.baerwolff@platomo.com" },
{ name="Lars Briem", email="lars.briem@platomo.com" },
{ name="Sebastian Buck", email="sebastian.buck@platomo.com" },
{ name="Michael Heilig", email="michael.heilig@platomo.com" },
{ name="Randy Seng", email="randy.seng@platomo.com" },
{ name="Steven Schlechte", email="steven.schlechte@platomo.com" },
{ name="OpenTrafficCam contributors", email="team@opentrafficcam.org" },
{ name="platomo GmbH", email="info@platomo.de" },
]
description = "OTAnalytics is a core module of the OpenTrafficCam framework to perform traffic analysis on trajectories of road users."

readme = "README.md"
requires-python = ">=3.11"
license-files = { paths = ["LICENSE"] }
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
keywords = ["OpenTrafficCam", "Traffic Analysis", "Traffic Counting"]
keywords = ["OpenTrafficCam", "Traffic Analysis", "Traffic Counting", "Trajectories"]

[project.urls]
Homepage = "https://opentrafficcam.org/"
Documentation = "https://opentrafficcam.org/overview/"
Repository = "https://github.com/OpenTrafficCam/OTAnalytics"
Issues = "https://github.com/OpenTrafficCam/OTAnalytics/issues"
Changelog = "https://github.com/OpenTrafficCam/OTAnalytics/releases"

[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
Expand Down

0 comments on commit 7dec8a2

Please sign in to comment.