Skip to content

Commit 82732ae

Browse files
committed
rename to python-tables
1 parent 972d023 commit 82732ae

File tree

4 files changed

+29
-34
lines changed

4 files changed

+29
-34
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@
33
.vscode/*
44
.idea/*
55
.github/*
6-
.pytest_cache/*
6+
.pytest_cache/*
7+
dist/*
8+
python_tables.egg-info/*

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
# LuaTable
1+
# Python-Tables
22
Implementing tables from Lua into Python 3.12
33

44
## Usage
55

6+
```bash
7+
pip install python-tables
8+
```
9+
610
```py
711
from luatable import Table
812

pyproject.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[project]
2+
name = "python-tables"
3+
version = "0.0.1"
4+
authors = [
5+
{ name="Cootshk", email="author@example.com" },
6+
]
7+
description = "Tables from lua, in python"
8+
readme = "README.md"
9+
requires-python = ">=3.12"
10+
classifiers = [
11+
"Programming Language :: Python :: 3",
12+
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
13+
"Operating System :: OS Independent",
14+
"Development Status :: 4 - Beta",
15+
16+
]
17+
dependencies = []
18+
[project.urls]
19+
"Homepage" = "https://github.com/Cootshk/luatable"
20+
"Bug Tracker" = "https://github.com/Cootshk/luatable/issues"
21+

setup.py

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)