pyproject.toml•1.83 kB
# pyproject.toml
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mobile-test-automation-mcp"
version = "1.0.0"
description = "MCP Server for Mobile Test Automation with JIRA Integration"
authors = [
{name = "Your Name", email = "your.email@company.com"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Testing",
]
dependencies = [
"mcp>=1.0.0",
"requests>=2.31.0",
"pydantic>=2.0.0",
"jinja2>=3.1.0",
"pyyaml>=6.0",
"click>=8.1.0",
"python-dotenv>=1.0.0",
"pytest>=7.4.0",
"selenium>=4.15.0",
"appium-python-client>=3.0.0",
]
[project.optional-dependencies]
dev = [
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.5.0",
"pre-commit>=3.4.0",
"pytest-cov>=4.1.0",
]
analysis = [
"pandas>=2.0.0",
"numpy>=1.24.0",
"matplotlib>=3.7.0",
]
[project.scripts]
mobile-test-mcp = "mobile_test_automation_mcp.server:main"
[project.urls]
Homepage = "https://github.com/yourusername/mobile-test-automation-mcp"
"Bug Tracker" = "https://github.com/yourusername/mobile-test-automation-mcp/issues"
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310', 'py311']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''