-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (17 loc) · 614 Bytes
/
setup.py
File metadata and controls
18 lines (17 loc) · 614 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, find_packages
from rsack.version import __version__
setup(
name="rsack",
description="A Multi-purpose downloader.",
long_description="Read more at https://github.com/Slyyxp/rsack",
url="https://github.com/Slyyxp/rsack",
author="Slyyxp",
author_email="slyyxp@protonmail.com",
version=__version__,
packages=find_packages(),
install_requires=["requests==2.25.1", "mutagen==1.45.1", "loguru==0.5.3", "pycryptodomex==3.17"],
entry_points={
'console_scripts': [
'rsack = rsack.main:main'
]
})