-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 753 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (24 loc) · 753 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="pioreactor-knowledge-base",
version="0.1.0",
license="MIT",
description="MCP tools for accessing domain knowledge files on a Pioreactor",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Noah",
author_email="noah@changebio.co.uk",
url="https://github.com/Change-Bio/pioreactor-knowledge-base",
packages=find_packages(),
include_package_data=True,
package_data={
"knowledge_base": [
"additional_config.ini",
],
},
install_requires=[],
entry_points={
"pioreactor.plugins": "pioreactor_knowledge_base = knowledge_base",
},
)