-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
69 lines (64 loc) · 1.53 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
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
[tool.poetry]
name = "surv_ai"
version = "0.2.0"
description = "A framework for multi-agent modeling using large language models"
authors = ["Daniel Balsam <daniel.balsam@survai.org>"]
license = "MIT"
readme = "README.md"
keywords=[
"ai",
"artificial intelligence",
"data science",
"statistics",
"models",
"llm",
"agents",
"survai",
"surv_ai",
"survey",
"multi-agent",
"large language model",
"artificial intelligence",
"machine learning",
"natural language processing",
"nlp",
"sentiment analysis",
]
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
include = [
"LICENSE",
]
"repository" = "https://github.com/DanielBalsam/surv_ai"
"documentation" = "https://github.com/DanielBalsam/surv_ai/blob/main/README.md"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^1.10.7"
python-dotenv = "^1.0.0"
beautifulsoup4 = "^4.12.2"
colorama = "^0.4.6"
exceptiongroup = "^1.1.1"
requests = "^2.31.0"
snscrape = "^0.6.2.20230320"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.22.0"
isort = "^5.12.0"
flake8 = "^6.0.0"
black = "^23.3.0"
matplotlib = "^3.7.1"
pytest = "^7.3.1"
mock = "^5.0.2"
pytest-asyncio = "^0.21.0"
pandas = "^2.0.2"
snscrape = {git = "https://github.com/JustAnotherArchivist/snscrape.git"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"