#!/usr/bin/env python3
"""
Setup script for SMILES Visualizer MCP Server
"""
from setuptools import setup, find_packages
import os
# Read the README file
def read_readme():
with open("README.md", "r", encoding="utf-8") as fh:
return fh.read()
# Read requirements
def read_requirements():
with open("requirements.txt", "r", encoding="utf-8") as fh:
return [line.strip() for line in fh if line.strip() and not line.startswith("#")]
setup(
name="smiles-visualizer-mcp",
version="1.0.0",
author="SMILES Visualizer Team",
author_email="",
description="A Model Context Protocol server for SMILES molecular visualization",
long_description=read_readme(),
long_description_content_type="text/markdown",
url="",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"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 :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Visualization",
],
python_requires=">=3.8",
install_requires=read_requirements(),
entry_points={
"console_scripts": [
"smiles-visualizer-mcp=server:main",
],
},
include_package_data=True,
zip_safe=False,
)