-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.23 KB
/
setup.py
File metadata and controls
40 lines (37 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
38
39
40
"""
Defines the entry point of the extension
"""
import setuptools
import os
import codecs
import io
with io.open("README.md") as readme_file:
long_description = readme_file.read()
# Register plugin
setuptools.setup(
name ='mcp-server-spira',
version = '1.1.1',
author = 'Inflectra Corporation',
author_email ='support@inflectra.com',
url = 'https://github.com/Inflectra/mcp-server-spira',
description = 'A Model Context Protocol (MCP) server enabling AI assistants to interact with Spira by Inflectra.',
long_description = long_description,
long_description_content_type = "text/markdown",
packages = setuptools.find_packages(where='src'),
package_dir={'': 'src'},
classifiers = [
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
entry_points = {
'console_scripts': [
'mcp-server-spira = mcp_server_spira.server:main',
],
},
include_package_data=True,
package_data={
'': ['*.md', '*.txt', '*.cfg', '*.json', '*.yaml', '*.yml'],
'mcp_server_spira': ['**/*.py', '**/*.md', '**/*.json', '**/*.yaml', '**/*.yml', '**/*.cfg'],
},
)