-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.31 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "roscribe"
version = "0.1.0"
description = "Translate natural language into robot software."
readme = "README.md"
authors = [{ name = "RoboCoach Technologies", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Code Generators ",
"Framework :: Robot Framework :: Tool"
]
keywords = ["Large Language Models", "AI-assisted Code Generation", "Robotics"]
dependencies = [
"langchain[openai]",
"graphviz",
"pysqlite3-binary",
"chromadb",
"tiktoken"
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = ["pip-tools", "pytest"]
[project.urls]
Homepage = "https://github.com/RoboCoachTechnologies/ROScribe"
"Bug Tracker" = "https://github.com/RoboCoachTechnologies/ROScribe/issues"
[project.scripts]
roscribe = "roscribe.main:main"
[tool.setuptools]
packages = ["roscribe"]