加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 2.19 KB
一键复制 编辑 原始数据 按行查看 历史
#!/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/whtsky/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 :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'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 助手
尝试更多
代码解读
代码找茬
代码优化