-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (44 loc) · 1.22 KB
/
Copy pathsetup.py
File metadata and controls
45 lines (44 loc) · 1.22 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
45
from setuptools import setup, find_packages
setup(
name="2do",
version="0.1.0",
packages=find_packages(),
install_requires=[
"click>=8.0.0",
"openai>=1.0.0",
"anthropic>=0.20.0",
"pydantic>=2.0.0",
"pyyaml>=6.0",
"requests>=2.28.0",
"aiohttp>=3.8.0",
"asyncio>=3.4.3",
"rich>=13.0.0",
"PyGithub>=2.0.0",
"GitPython>=3.1.0",
"playwright>=1.40.0",
"psutil>=5.9.0",
"pillow>=10.0.0",
"pyperclip>=1.8.0",
"packaging>=21.0",
"toml>=0.10.2",
"python-dotenv>=1.0.0",
"croniter>=6.0.0",
"apscheduler>=3.11.0",
],
entry_points={
"console_scripts": [
"2do=twodo.cli:main",
],
},
author="STAFE GROUP AB",
description="2DO - Intelligent AI model routing and multitasking CLI tool",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/STAFE-GROUP-AB/AI-Redirector",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
)