加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 917 Bytes
一键复制 编辑 原始数据 按行查看 历史
from setuptools import setup, find_packages
import os
f = open(os.path.join(os.path.dirname(__file__), "README.rst"))
readme = f.read()
f.close()
setup(
name="roku",
version="4.1.0",
description="Client for the Roku media player",
long_description=readme,
author="Jeremy Carbaugh",
author_email="jcarbaugh@gmail.com",
url="https://github.com/jcarbaugh/python-roku",
packages=find_packages(),
install_requires=["requests<3",],
license="BSD License",
platforms=["any"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化