-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
58 lines (54 loc) · 1.47 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
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup, find_packages
def readme():
with open("README.md", "r") as f:
return f.read()
setup(
name="pybalt",
version="2024.12.9",
author="nichind",
author_email="[email protected]",
description="Download mediafiles from YouTube, Twitter (X), Instagram, Reddit & more. CLI & python module for @imputnet's cobalt processing instance api.",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/nichind/pybalt",
packages=find_packages(),
package_data={"pybalt": ["locales/*.txt"]},
install_requires=[
"aiohttp",
"aiofiles",
"pytube",
"python-dotenv",
],
keywords=[
"downloader",
"cobalt",
"cobalt-cli",
"youtube",
"twitter",
"x",
"instagram",
"reddit",
"twitch",
"bilibili",
"download",
"youtube-downloader",
"twitter-downloader",
"x-downloader",
"instagram-downloader",
"reddit-downloader",
"twitch-downloader",
"bilibili-downloader",
],
classifiers=[
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
entry_points={
"console_scripts": [
"pybalt=pybalt.__main__:main",
"cobalt=pybalt.__main__:main",
],
},
)