代码拉取完成,页面将自动刷新
#!/usr/bin/env python
# coding=utf-8
# python setup.py sdist bdist_wheel
import io
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import zgrobot
class PyTest(TestCommand):
user_options = [("pytest-args=", "a", "Arguments to pass to pytest")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = ""
def run_tests(self):
import shlex
import sys
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(shlex.split(self.pytest_args))
sys.exit(errno)
with io.open("README.md", encoding="utf8") as f:
readme = f.read()
install_requires = open("requirements.txt").readlines()
setup(
name='zgrobot',
version=zgrobot.__version__,
author=zgrobot.__author__,
author_email='shuoshuoyun@foxmail.com',
url='https://github.com/pylover7/ZgRobot',
packages=find_packages(),
keywords="wechat weixin zgrobot",
description='ZgRoBot: writing WeChat Offical Account Robots with fun',
long_description=readme,
long_description_content_type="text/markdown",
install_requires=install_requires,
include_package_data=True,
license='MIT License',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
project_urls={
'Documentation': 'https://zgrobot.readthedocs.io/zh/stable/',
'Source': 'https://github.com/pylover7/ZgRobot',
'Tracker': 'https://github.com/pylover7/ZgRobot/issues'
},
python_requires='>=3',
tests_require=['pytest'],
cmdclass={"pytest": PyTest},
extras_require={'crypto': ["cryptography"]},
package_data={'zgrobot': ['contrib/*.html']}
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。