diff options
author | alyx <alyx@aleteoryx.me> | 2023-11-23 23:00:44 -0500 |
---|---|---|
committer | alyx <alyx@aleteoryx.me> | 2023-11-23 23:00:44 -0500 |
commit | fea4addaa6659aff6b324ee4db4b4223df22d591 (patch) | |
tree | 8917de9d8ba7149747bb86ac74cd5cf855621847 | |
parent | c6ab859d582af0b78b4877122f969c76f7f7652b (diff) | |
download | bbss.py-fea4addaa6659aff6b324ee4db4b4223df22d591.tar.gz bbss.py-fea4addaa6659aff6b324ee4db4b4223df22d591.tar.bz2 bbss.py-fea4addaa6659aff6b324ee4db4b4223df22d591.zip |
Packaging!
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | pyproject.toml | 23 |
2 files changed, 25 insertions, 0 deletions
@@ -1 +1,3 @@ *~ +/dist +__pycache__ diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..8ad0fbb --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,23 @@ +[project] +name = "bbss" +version = "0.0.1" +authors = [ + { name="Aleteoryx", email="alyx@aleteoryx.me" }, +] +description = "Module/CLI for Melon's Button Badge Sharing System(BBSS)" +readme = "README.md" +requires-python = ">=3.8" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", + "Operating System :: OS Independent", + "Environment :: Console", + "Topic :: Internet :: WWW/HTTP", +] + +[project.urls] +Repository = "https://git.aleteoryx.me/cgit/bbss.py" + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" |