Bumps [pillow](https://github.com/python-pillow/Pillow) from 9.0.0 to 9.0.1. - [Release notes](https://github.com/python-pillow/Pillow/releases) - [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst) - [Commits](https://github.com/python-pillow/Pillow/compare/9.0.0...9.0.1) --- updated-dependencies: - dependency-name: pillow dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
58 lines
1.8 KiB
Python
58 lines
1.8 KiB
Python
from os import path
|
|
|
|
import setuptools
|
|
import re
|
|
|
|
|
|
def read(fname):
|
|
return open(path.join(path.dirname(__file__), fname), encoding="utf-8").read()
|
|
|
|
|
|
metadata = dict(
|
|
re.findall(
|
|
r"""__([a-z]+)__ = "([^"]+)""", read("TwitchChannelPointsMiner/__init__.py")
|
|
)
|
|
)
|
|
|
|
setuptools.setup(
|
|
name="Twitch-Channel-Points-Miner-v2",
|
|
version=metadata["version"],
|
|
author="Tkd-Alex (Alessandro Maggio)",
|
|
author_email="alex.tkd.alex@gmail.com",
|
|
description="A simple script that will watch a stream for you and earn the channel points.",
|
|
license="GPLv3+",
|
|
keywords="python bot streaming script miner twtich channel-points",
|
|
url="https://github.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2",
|
|
packages=setuptools.find_packages(),
|
|
include_package_data=True,
|
|
install_requires=[
|
|
"requests==2.25.1",
|
|
"websocket-client==1.0.1",
|
|
"browser_cookie3==0.12.1",
|
|
"pillow==9.0.1",
|
|
"python-dateutil==2.8.1",
|
|
"emoji==1.2.0",
|
|
"millify==0.1.1",
|
|
"pre-commit==2.13.0",
|
|
"colorama==0.4.4",
|
|
"flask==2.0.1",
|
|
"irc==19.0.1",
|
|
],
|
|
long_description=read("README.md"),
|
|
long_description_content_type="text/markdown",
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Operating System :: OS Independent",
|
|
"Topic :: Utilities",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Scientific/Engineering",
|
|
"Topic :: Software Development :: Version Control :: Git",
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
"Natural Language :: English",
|
|
],
|
|
python_requires=">=3.6",
|
|
)
|