forked from whtsky/kcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (34 loc) · 1013 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
33
34
35
36
37
38
39
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Install as Python package:
python3 setup.py install
"""
import setuptools
from kindlecomicconverter import __version__
NAME = 'KindleComicConverter_headless'
VERSION = __version__
setuptools.setup(
name=NAME,
version=VERSION,
author='Ciro Mattia Gonano, Pawel Jastrzebski',
author_email='[email protected], [email protected]',
description='KindleComicConverter sans GUI, PyQt and raven(Sentry).',
license='ISC License (ISCL)',
keywords=['kindle', 'kobo', 'comic', 'manga', 'mobi', 'epub', 'cbz'],
url='http://github.com/whtsky/kcc',
entry_points={
'console_scripts': [
'kcc-c2e = kindlecomicconverter.startup:startC2E',
'kcc-c2p = kindlecomicconverter.startup:startC2P',
],
},
packages=['kindlecomicconverter'],
install_requires=[
'Pillow>=5.2.0',
'psutil>=5.0.0',
'python-slugify>=1.2.1',
],
classifiers=[],
zip_safe=False,
)