-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
41 lines (36 loc) · 1.33 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gpt-synthesizer"
version = "0.0.4"
description = "Collaboratively build an entire codebase for any project with the help of an AI"
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 "
]
keywords = ["Large Language Models", "AI-assisted Code Generation"]
dependencies = [
"langchain[openai]",
"streamlit"
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = ["pip-tools", "pytest"]
[project.urls]
Homepage = "https://github.com/RoboCoachTechnologies/GPT-Synthesizer"
"Bug Tracker" = "https://github.com/RoboCoachTechnologies/GPT-Synthesizer/issues"
[project.scripts]
gpt-synthesizer = "gpt_synthesizer.main:main"
gpt-synthesizer-streamlit = "gpt_synthesizer.run_app:main"
[tool.setuptools]
packages = ["gpt_synthesizer"]