-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1007 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 1007 Bytes
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
33
from setuptools import setup
from getcomic import __version__
dependencies=['fpdf','selenium','pathlib']
long_description=""
with open("README.md",'r') as f:
long_description=f.read()
setup(
name='getcomic',
description='A command line tool to download comics from readcomiconline.to',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/VinitraMk/getcomic-cli',
author='VinitraMk',
author_email='vinitramk@gmail.com',
packages=[
'getcomic'
],
version=__version__,
install_requires=dependencies,
entry_points={
'console_scripts':[
'getcomic=getcomic.getcomic:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: POSIX',
'Programming Language :: Python',
],
)