Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
minkyu-choi07 committed Jan 15, 2024
1 parent 3826955 commit 40f1a81
Show file tree
Hide file tree
Showing 23 changed files with 1,152 additions and 561 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Python-Project-Template

Data Source
1. [ImageNet](https://image-net.org/challenges/LSVRC/2017/index.php): The ImageNet Large Scale Visual Recognition Challenge (ILSVRC) 2017


This is a template repository. Please initialize your python project using this template.

1. Make sure you have a right python version installed locally and change the version of python from the files below
Expand Down
9 changes: 4 additions & 5 deletions example.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
def main():
"""Provide example code to run your code / application."""
print("You're all set")
import os

# Get the name of the current file/script
script_name = os.path.basename(__file__)

if __name__ == "__main__":
main()
print(script_name)
45 changes: 21 additions & 24 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,47 +2,44 @@
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["tlv_dataset"] # package names should match these glob patterns (["*"] by default)
exclude = [""] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)

[project]
name = "tlv_data"
name = "tlv_dataset"
version = "1.0.0"
authors = [
{ name="Minkyu Choi", email="minkyu.choi@utexas.edu" },
]
description = "Temporal Logic Video (TLV) Dataset"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy==1.22.0",
"pandas"
"opencv-python",
"torch==2.0.0",
"Pillow",
"matplotlib",
"pycocotools==2.0.7",
"nuscenes-devkit",
"dask",
"waymo-open-dataset-tf-2-11-0==1.6.0",
"omegaconf"

]

[project.urls]
"Homepage" = "https://github.com/UTAustin-SwarmLab/Python-Project-Template"
"Bug Tracker" = "https://github.com/UTAustin-SwarmLab/Python-Project-Template/issues"
"Homepage" = "https://github.com/UTAustin-SwarmLab/temporal-logic-vedio-dataset"
"Bug Tracker" = "https://github.com/UTAustin-SwarmLab/temporal-logic-vedio-dataset/issues"

[project.optional-dependencies]
dev = ["black", "ruff", "mypy"]
test = ["pytest", "pytest-cov", "pytest-mock"]

[tool.black]
line-length = 80

[tool.ruff]
select = [
"E", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade
"D", # pydocstyle
]

ignore = ["ANN101", "ANN102"]

extend-exclude = [".venv", "venv", "vscode"]

[tool.ruff.pydocstyle]
convention = "google"
test = ["pytest", "pytest-cov", "pytest-mock"]
114 changes: 0 additions & 114 deletions run_scripts/run_1_synthetic_tlv.py

This file was deleted.

114 changes: 0 additions & 114 deletions run_scripts/run_2_synthetic_tlv_until_long_horizon.py

This file was deleted.

Loading

0 comments on commit 40f1a81

Please sign in to comment.