-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (27 loc) · 919 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup, find_packages
import re
import io
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='re-manga',
version='0.2.3',
author='Varun Panchal',
author_email='varunpanchal283@gmail.com',
description='Get your favourite manga in pdf',
packages=find_packages(),
url='https://github.com/varunpanchal283/re-manga',
keywords=['anime', 'manga' ,'downloader', 'manga bulk downloader', 'download', 'mangadex','manganelo','funmanga','readm'],
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'beautifulsoup4==4.9.3',
'requests==2.25.1',
'PyInquirer==1.0.3',
'prettytable==2.1.0',
'click==7.1.2',
'pyfiglet==0.8.post1',
'Pillow==8.0.1'
],
entry_points={"console_scripts": ["re-manga=remanga.__main__:main"]},
)