diff --git a/.gitignore b/.gitignore index 231bba3..609681d 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,6 @@ .vscode/* .idea/* .github/* -.pytest_cache/* \ No newline at end of file +.pytest_cache/* +dist/* +python_tables.egg-info/* \ No newline at end of file diff --git a/README.md b/README.md index 12c9c54..33d74b3 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..f82f3a4 --- /dev/null +++ b/pyproject.toml @@ -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" + diff --git a/setup.py b/setup.py deleted file mode 100644 index e41338e..0000000 --- a/setup.py +++ /dev/null @@ -1,32 +0,0 @@ -from distutils.core import setup - -setup( - # Application name: - name="MyApplication", - # Version number (initial): - version="0.1.0", - - # Application author details: - author="name surname", - author_email="name@addr.ess", - - # Packages - packages=["app"], - - # Include additional files into the package - include_package_data=True, - - # Details - url="http://pypi.python.org/pypi/MyApplication_v010/", - - # - # license="LICENSE.txt", - description="Useful towel-related stuff.", - - # long_description=open("README.txt").read(), - - # Dependent packages (distributions) - install_requires=[ - "flask", - ], -) \ No newline at end of file