Files
张翔 08ea5fbe98 feat(admin): 添加用户管理相关文件
添加用户管理视图、API和状态管理文件
2026-03-28 14:37:29 +08:00

36 lines
849 B
Python

from setuptools import setup, find_packages
setup(
name="everything-is-suitable-api-test",
version="1.0.0",
description="黑盒API测试工具",
author="Test Team",
author_email="test@example.com",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"requests>=2.31.0",
"httpx>=0.25.0",
"pytest>=7.4.0",
"allure-pytest>=2.13.2",
"pyyaml>=6.0.1",
"python-dotenv>=1.0.0",
"click>=8.1.6",
"jinja2>=3.1.2",
],
extras_require={
"dev": [
"pytest-cov>=4.1.0",
"black>=23.12.0",
"flake8>=6.1.0",
"mypy>=1.7.0",
],
},
entry_points={
"console_scripts": [
"apitest=apitest.main:cli",
],
},
python_requires=">=3.10",
)