8000 init · Kinetics20/json_csv_to_python@b0a4ac1 · GitHub
[go: up one dir, main page]

Skip to content

Commit b0a4ac1

Browse files
committed
init
0 parents  commit b0a4ac1

File tree

6 files changed

+172
-0
lines changed

6 files changed

+172
-0
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Python-generated files
2+
__pycache__/
3+
*.py[oc]
4+
build/
5+
dist/
6+
wheels/
7+
*.egg-info
8+
9+
# Virtual environments
10+
.venv

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.12

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Table encoders
2+
3+
### A mini project in python allows to encode json and csv tables into python code.

__init__.py

Whitespace-only changes.

pyproject.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[project]
2+
name = "table-encoders"
3+
version = "0.1.0"
4+
description = "Mini project in python allows to encode json and csv tables into python code."
5+
authors = ["Piotr Lipinski <kinetics20@gmail.com>"]
6+
license = "Beerware"
7+
readme = "README.md"
8+
requires-python = ">=3.12"
9+
dependencies = []
10+
11+
[dependency-groups]
12+
dev = [
5EF0 13+
"mypy>=1.15.0",
14+
"pytest>=8.3.4",
15+
"ruff>=0.9.6",
16+
]

uv.lock

Lines changed: 142 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
0