From 73e0476bc6747dda6b2df6e17739eca6129baf13 Mon Sep 17 00:00:00 2001 From: Markil 3 Date: Tue, 2 Dec 2025 10:30:00 -0700 Subject: [PATCH] Updates the version. --- pyproject.toml | 2 +- setup.cfg | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 setup.cfg diff --git a/pyproject.toml b/pyproject.toml index f11eadd..b547de3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "comic_download" -version = "0.0.1" +version = "0.1.0" authors = [ {name = "Markil 3", email = "markil3@singlepilot.net"} ] diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..3aa61d6 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,28 @@ +[metadata] +name = comic_download +version = 0.1.0 + +[options] +package_dir= + =src +zip_safe = False +packages = find: +include_package_data = True +install_requires = + requests + beautifulsoup4 + lxml + pillow + atproto + pycryptodome + +[options.packages.find] +where=src + +[options.package_data] +comic_download = *.ttf +* = README.md, LICENSE + +[options.entry_points] +console_scripts = + executable-name = comic_download.__main__:__main__ \ No newline at end of file