-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
28 lines (26 loc) · 797 Bytes
/
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "astro-arxiv-bot"
version = "0.1.0"
description = "A question-answering bot powered by retrieval-augmented generation"
requires-python = ">=3.8"
readme = "README.md"
license = {file="LICENSE"}
authors = [
{name = "John F. Wu", email = "[email protected]"},
{name = "JSALT 2024 - Evaluating LLMs for Astronomy team"}
]
maintainers = [
{name = "John F. Wu", email = "[email protected]"}
]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 4 - Beta",
]
[project.optional-dependencies]
dev = ["black"]