forked from azizmazrou/ews-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 825 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (32 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
setup(
name="ews-mcp-server",
version="3.4.0",
description="MCP Server for Microsoft Exchange Web Services",
author="Your Name",
author_email="your.email@example.com",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"mcp>=1.0.0",
"exchangelib>=5.0.0",
"pydantic>=2.5.0",
"python-dotenv>=1.0.0",
],
extras_require={
"dev": [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"ruff>=0.1.0",
"mypy>=1.7.0",
"black>=23.12.0",
]
},
entry_points={
"console_scripts": [
"ews-mcp-server=src.main:main",
],
},
python_requires=">=3.11",
)