Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanBindez committed Oct 21, 2023
1 parent b5169c5 commit 78887ad
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
#!/usr/bin/env python
"""This module contains setup instructions for pytubefix."""

import codecs
import os

from setuptools import setup

here = os.path.abspath(os.path.dirname(__file__))

with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()

with open(os.path.join(here, "pytubefix", "version.py")) as fp:
exec(fp.read())

setup(name = "pytubefix",
version = __version__, # noqa: F821
author = "Juan Bindez",
author_email = "[email protected]",
packages = ["pytubefix", "pytubefix.contrib"],
package_data = {"": ["LICENSE"],},
url = "https://github.com/juanbindez/pytubefix",
license = "MIT license",
entry_points = {
"console_scripts": [
"pytubefix = pytubefix.cli:main"],},
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Multimedia :: Video",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Terminals",
"Topic :: Utilities",
],
description = ("Python 3 library for downloading YouTube Videos."),
include_package_data = True,
long_description_content_type = "text/markdown",
long_description = long_description,
zip_safe = True,
python_requires = ">=3.7",
project_urls = {
"Bug Reports": "https://github.com/juanbindez/pytubefix/issues",
"Read the Docs": "http://pytubefix.readthedocs.io/",
},
keywords = ["youtube", "download", "video", "stream",],)

0 comments on commit 78887ad

Please sign in to comment.