diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..4aba2fe --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,29 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "pykban" +version = "0.0.1" +authors = [ + { name="Alex Selimov", email="alex@alexselimov.com"} +] + +description = "A simple TUI implementation of a kanban board" +readme = "README.md" +requires-python = ">=3.8" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", + "Operating System :: OS Independent", + "Development Status :: 3 - Alpha", + "Environment :: Console" +] + +[project.urls] +Homepage = "https://alexselimov.com/git/aselimov/pykanban" +Issues = "https://github.com/aselimov/PyKanban/issues" + +[project.scripts] +pykban = "pykban.tui:run_tui" + diff --git a/src/pykban/__init__.py b/src/pykban/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/pykanban/board.py b/src/pykban/board.py similarity index 100% rename from src/pykanban/board.py rename to src/pykban/board.py diff --git a/src/pykanban/layout.tcss b/src/pykban/layout.tcss similarity index 100% rename from src/pykanban/layout.tcss rename to src/pykban/layout.tcss diff --git a/src/pykanban/tui.py b/src/pykban/tui.py similarity index 100% rename from src/pykanban/tui.py rename to src/pykban/tui.py