-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.03 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
from setuptools import setup, find_packages
with open("./readme.md", "r") as fh:
long_description = fh.read()
setup(
name="doujindown",
version="0.0.5",
author="hashirkz",
author_email="[email protected]",
description="cli app to download doujins + manga from lots of websites *manganelo.com hitomi.la",
long_description=long_description,
long_description_content_type="text",
url="https://github.com/hashirkz/doujindown",
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'doujindown = doujindown.app:app',
],
},
install_requires=[
'numpy==1.24.3',
'pandas==2.0.2',
'requests==2.28.1',
'bs4==0.0.1',
'tabulate==0.9.0',
'urllib3==1.26.12',
'pillow==10.0.0',
'matplotlib==3.7.2',
'pyyaml==6.0.1'
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: POSIX",
],
)