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