forked from openai/GABRIEL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (93 loc) · 2.35 KB
/
pyproject.toml
File metadata and controls
100 lines (93 loc) · 2.35 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "openai-gabriel"
version = "1.0.7"
description = "LLM-based library to measure quantitative attributes on qualitative data"
authors = [
{name = "Hemanth Asirvatham"},
{name = "Elliott Mokski"},
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.7"
keywords = [
"llm",
"gpt",
"openai",
"ai",
"research",
"academic",
"econ",
"economics",
"econometrics",
"machine learning",
"science",
"social science",
"text analysis",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"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",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"openai>=1.0.0",
"pandas>=1.0.0",
"numpy>=1.18.0",
"Jinja2>=3.0.0",
"tqdm>=4.40.0",
"aiohttp>=3.7.0",
"aiolimiter>=1.0.0",
"httpx>=0.23.0",
"plotly>=5.0.0",
"matplotlib>=3.6.0",
"requests>=2.0.0",
"scipy>=1.8.0",
"tiktoken>=0.2.0",
"pydantic>=1.10.0",
"pypdf>=4.0.0",
"python-docx>=1.1.0",
"statsmodels>=0.14.0",
]
[project.optional-dependencies]
dev = [
"build>=1.0.0",
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"ruff>=0.4.0",
"mypy>=1.0.0",
]
analysis = [
"tabulate>=0.9.0",
]
notebook = [
"ipython>=7.0.0",
]
[project.urls]
Homepage = "https://github.com/openai/GABRIEL"
Repository = "https://github.com/openai/GABRIEL"
Documentation = "https://github.com/openai/GABRIEL/blob/main/README.md"
Issues = "https://github.com/openai/GABRIEL/issues"
[project.scripts]
gabriel = "gabriel.cli.__main__:main"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
include = ["gabriel*"]
[tool.setuptools.package-data]
"gabriel.prompts" = ["*.jinja2"]