-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.2 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (32 loc) · 1.2 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
from setuptools import setup, find_packages
from pathlib import Path
# Read the long description from README.md
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="MSTR_Robotics_magerdaniel",
version="0.3.12",
description="MicroStrateg(P)ython",
author="Daniel Mager",
author_email="danielmager@gmx.de",
url="https://github.com/magerdaniel",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(), # Automatically find all packages
install_requires=[
"mstrio-py==11.4.9.101", # Specify the exact or compatible version
"langchain",
"openai",
"tiktoken",
"langchain-community",
"faiss-cpu",
"flashtext>=2.7", # Add a minimum version if applicable
],
package_data={"mstr_robotics": ["jup_schema_monitor.ipynb"]}, # Include additional files
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8", # Specify the required Python version
)