加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.64 KB
一键复制 编辑 原始数据 按行查看 历史
Lemon-Test-Official 提交于 2021-11-12 16:26 . V1.0.0
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup,find_packages
def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return open(file_path, encoding='utf-8').read()
setup(
name='pytest-testreport',
version='1.1.1',
author='MuSen',
author_email='musen_nmb@qq.com',
maintainer='testreport',
maintainer_email='musen_nmb@qq.com',
license='MIT',
url='https://github.com/musen123/pytest-testreport',
long_description=read('README.md'),
long_description_content_type="text/markdown",
# py_modules=['pytestTestreport'],
python_requires='>=3.5',
install_requires=['pytest>=3.5.0'],
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Pytest',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
],
package_data={
"": ["*.html",'*.md'],
},
entry_points={
'pytest11': [
'testreport = pytestTestreport.pytest_testreport',
],
},
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化