-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (70 loc) · 2.14 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (70 loc) · 2.14 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vritraai"
version = "0.30.1"
description = "An intelligent, AI-enhanced terminal shell with advanced features, beautiful theming, and powerful command execution capabilities"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "MIT"}
authors = [
{name = "Alex Butler", email = "contact@vritrasec.com"}
]
maintainers = [
{name = "Alex Butler", email = "contact@vritrasec.com"}
]
keywords = ["terminal", "shell", "ai", "cli", "command-line", "assistant", "automation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: System :: Shells",
"Topic :: System :: System Shells",
"Topic :: Terminals",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Environment :: Console",
]
dependencies = [
"openai==0.28.0",
"requests>=2.28.0",
"prompt-toolkit>=3.0.0",
"rich>=13.0.0",
]
[project.optional-dependencies]
optional = [
"pygments>=2.13.0",
"psutil>=5.9.0",
]
formatting = [
"black>=23.0.0",
"autopep8>=2.0.0",
]
all = [
"pygments>=2.13.0",
"psutil>=5.9.0",
"black>=23.0.0",
"autopep8>=2.0.0",
]
[project.urls]
Homepage = "https://github.com/VritraSecz/VritraAI"
Documentation = "https://vritraai.vritrasec.com/"
Repository = "https://github.com/VritraSecz/VritraAI"
"Bug Reports" = "https://github.com/VritraSecz/VritraAI/issues"
Website = "https://vritrasec.com"
[project.scripts]
vritraai = "vritraai:main"
[tool.setuptools]
py-modules = ["vritraai", "config_manager", "config"]
[tool.setuptools.package-data]
"*" = ["README.md", "LICENSE", "CHANGELOG.md", "requirements.txt"]