-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·44 lines (43 loc) · 1.33 KB
/
setup.py
File metadata and controls
executable file
·44 lines (43 loc) · 1.33 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
41
42
43
44
from setuptools import setup, find_packages
setup(
name="sofai_tool",
version="0.1.0",
author="Vishal Pallagani",
author_email="vishalp@email.sc.edu",
description="SOFAI - A planning and reasoning tool with System1 and System2 solvers.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/VishalPallagani/sofai_tool", # Update with your repository link
packages=find_packages(),
install_requires=[
"annotated-types>=0.7.0",
"anyio>=4.8.0",
"certifi>=2024.12.14",
"contourpy>=1.3.1",
"cycler>=0.12.1",
"fonttools>=4.55.6",
"h11>=0.14.0",
"httpcore>=1.0.7",
"httpx>=0.28.1",
"idna>=3.10",
"kiwisolver>=1.4.8",
"matplotlib>=3.10.0",
"networkx>=3.4.2",
"numpy>=2.2.2",
"ollama>=0.4.7",
"packaging>=24.2",
"pillow>=11.1.0",
"pydantic>=2.10.6",
"pydantic_core>=2.27.2",
"pyparsing>=3.2.1",
"python-dateutil>=2.9.0.post0",
"sniffio>=1.3.1",
"typing_extensions>=4.12.2",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
)