1 Star 7 Fork 4

独行侠/PyPicGo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.55 KB
一键复制 编辑 原始数据 按行查看 历史
独行侠 提交于 3年前 . feat(): 1.2.1
from setuptools import setup, find_packages
with open('README.rst', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='pypicgo',
version='1.2.1',
keywords=['python', 'pypicgo'],
description='A simple & powerful tool for pictures uploading built by python',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT Licence',
url='https://github.com/AnsGoo/PyPicGo',
author='ansgoo',
author_email='haiven_123@163.com',
packages=find_packages(),
include_package_data=True,
platforms='any',
install_requires=[
'pydantic>=1.7.4',
'pyyaml>=5.3.1',
'requests>=2.22.0',
'requests-toolbelt>=0.9.1',
'Pillow>=8.2.0',
'pyperclip>=1.8.0'
],
entry_points={
'console_scripts': [
'pypicgo=pypicgo.upload:action'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Operating System :: POSIX :: Linux',
'Environment :: Console',
'Environment :: MacOS X',
]
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Ranger313/pypicgo.git
git@gitee.com:Ranger313/pypicgo.git
Ranger313
pypicgo
PyPicGo
master

搜索帮助