mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-11 02:33:51 +08:00
37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="user-management",
|
|
version="0.1.0",
|
|
description="A sample user management system for testing Code Index MCP",
|
|
author="Test Author",
|
|
author_email="test@example.com",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"pydantic>=1.10.0",
|
|
"click>=8.0.0",
|
|
],
|
|
extras_require={
|
|
"dev": [
|
|
"pytest>=7.0.0",
|
|
"black>=22.0.0",
|
|
"flake8>=4.0.0",
|
|
]
|
|
},
|
|
entry_points={
|
|
"console_scripts": [
|
|
"user-cli=user_management.cli:main",
|
|
],
|
|
},
|
|
python_requires=">=3.8",
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
],
|
|
) |