forked from kha-white/mokuro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.2 KB
/
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
40
41
42
43
44
45
46
47
from pathlib import Path
from setuptools import setup, find_packages
long_description = (Path(__file__).parent / "README.md").read_text('utf-8').split('# Installation')[0]
setup(
name="mokuro",
version='0.3.0-beta.1',
description="Browser reader for manga with selectable text",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/kha-white/mokuro",
author="Maciej Budyś",
author_email="[email protected]",
license="GPLv3",
classifiers=[
"Programming Language :: Python :: 3",
],
packages=find_packages(),
include_package_data=True,
install_requires=[
"fire",
"loguru",
"manga-ocr>=0.1.7",
"natsort",
"numpy==1.26",
"opencv-python>=4.1.2",
"Pillow>=7.1.2",
"pillow-avif-plugin>=1.4.3",
"pyclipper",
"requests",
"scipy",
"shapely",
"torch>=1.7.0",
"torchsummary",
"torchvision>=0.8.1",
"transformers>=4.25.0",
"tqdm>=4.41.0",
"uuid-utils==0.8.0",
],
entry_points={
"console_scripts": [
"mokuro=mokuro.__main__:main",
]
},
)