-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 741 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
from pathlib import Path
long_description = (Path(__file__).parent / "README.MD").read_text(encoding="utf-8")
setup(
name="waifu-python",
version="1.9.4",
packages=find_packages(),
install_requires=["httpx", "gallery-dl", "httpx_socks", "python-dotenv"],
author="Misfit",
description="A project born out of boredom, designed to simplify and reduce the code related to the Waifu API.",
url="https://github.com/MisfiT2020/Waifu-Python",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
'console_scripts': [
'waifu-python=waifu_python.__main__:main',
],
},
)