-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.23 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.23 KB
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
34
35
36
37
#!/usr/bin/env python3
from setuptools import setup, find_packages
import os
# Read requirements
with open('requirements.txt', 'r') as f:
requirements = [line.strip() for line in f.readlines() if not line.startswith('#')]
# Read README for the long description
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name="mcp-xcode-diagnostics",
version="1.0.0",
description="MCP plugin for extracting and viewing Xcode build errors and warnings",
long_description=long_description,
long_description_content_type="text/markdown",
author="Mike R. Manzano",
author_email="mike@clicketyclacks.co",
url="https://github.com/leftspin/mcp-xcode-diagnostics",
packages=find_packages(), # Finds packages with __init__.py files
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
],
python_requires=">=3.6",
# Include non-Python files
package_data={
"": ["plugin.json", "manifest.json"],
},
)