4 Star 6 Fork 1

Gitee 极速下载/werobot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/whtsky/WeRoBot
克隆/下载
setup.py 2.08 KB
一键复制 编辑 原始数据 按行查看 历史
whtsky 提交于 2020-11-03 23:45 . test: test under Python 3.9
#!/usr/bin/env python
# coding=utf-8
import io
import werobot
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
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 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.rst", encoding="utf8") as f:
readme = f.read()
readme = readme.replace("latest", "v" + werobot.__version__)
install_requires = open("requirements.txt").readlines()
setup(
name='WeRoBot',
version=werobot.__version__,
author=werobot.__author__,
author_email='whtsky@me.com',
url='https://github.com/offu/WeRoBot',
packages=find_packages(),
keywords="wechat weixin werobot",
description='WeRoBot: writing WeChat Offical Account Robots with fun',
long_description=readme,
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.6',
'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',
],
tests_require=['pytest'],
cmdclass={"pytest": PyTest},
extras_require={'crypto': ["cryptography"]},
package_data={'werobot': ['contrib/*.html']}
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mirrors/werobot.git
git@gitee.com:mirrors/werobot.git
mirrors
werobot
werobot
master

搜索帮助