Formats everything for proper packaging

This commit is contained in:
2025-08-03 13:10:00 -06:00
parent 771d1422d8
commit 514d119d4b
11 changed files with 951 additions and 112 deletions

29
setup.py Normal file
View File

@@ -0,0 +1,29 @@
import os
from setuptools import find_packages, setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='comic_download',
packages=find_packages(include=['comic_download']),
version='0.0.1',
description='An application to download comics from various sources to the local hard drive.',
long_description=read('README.md'),
long_description_content_type='text/markdown',
author='Copyrate',
license='gpl-3.0',
url='https://git.singlepilot.net/copyrate/ComicDownload',
install_requires=[
'requests',
'beautifulsoup4',
'lxml',
'pillow',
'atproto'
],
entry_points={
'console_scripts': [
'comic-download = comic_download.__main__:__main__'
]
}
)