30 lines
811 B
Python
30 lines
811 B
Python
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__'
|
|
]
|
|
}
|
|
)
|