-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (69 loc) · 2.14 KB
/
pyproject.toml
File metadata and controls
78 lines (69 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
77
78
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rightnow-cli"
version = "1.0.0"
description = "RightNow CLI - GPU-Native AI Code Editor for CUDA development"
readme = "README.md"
authors = [{name = "RightNow AI Team", email = "jaber@rightnowai.co"}]
license = {text = "Proprietary"}
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Code Generators",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: System :: Hardware :: Symmetric Multi-processing",
]
keywords = ["gpu", "cuda", "optimization", "kernel", "ai", "performance", "rightnow", "code-editor", "nvidia", "assistant"]
dependencies = [
"pydantic==2.12.0",
"backoff>=2.2.1",
"requests>=2.31.0",
"rich>=13.5.0",
"prompt-toolkit>=3.0.0",
"pygments>=2.15.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-mock>=3.11.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.0.0"
]
[project.urls]
Homepage = "https://rightnowai.co"
"Bug Tracker" = "https://github.com/RightNow-AI/rightnow-cli/issues"
"Documentation" = "https://docs.rightnowai.co/cli"
[project.scripts]
rightnow = "rightnow_cli.cli_minimal:main"
rightnow-cli = "rightnow_cli.cli_minimal:main"
[tool.setuptools.packages.find]
include = ["rightnow_cli*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310', 'py311']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
ignore_missing_imports = true