Skip to content

Commit

Permalink
rename to python-tables
Browse files Browse the repository at this point in the history
  • Loading branch information
cootshk committed Nov 1, 2023
1 parent 972d023 commit 82732ae
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 34 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
.vscode/*
.idea/*
.github/*
.pytest_cache/*
.pytest_cache/*
dist/*
python_tables.egg-info/*
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# LuaTable
# Python-Tables
Implementing tables from Lua into Python 3.12

## Usage

```bash
pip install python-tables
```

```py
from luatable import Table

Expand Down
21 changes: 21 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[project]
name = "python-tables"
version = "0.0.1"
authors = [
{ name="Cootshk", email="author@example.com" },
]
description = "Tables from lua, in python"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",

]
dependencies = []
[project.urls]
"Homepage" = "https://github.com/Cootshk/luatable"
"Bug Tracker" = "https://github.com/Cootshk/luatable/issues"

32 changes: 0 additions & 32 deletions setup.py

This file was deleted.

0 comments on commit 82732ae

Please sign in to comment.