-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (44 loc) · 1.16 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aria-research"
version = "5.0.0"
description = "Agentic Research Intelligence Architecture"
authors = [{name = "Ayush Chhoker", email = "ayush.chhoker@example.com"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.11"
keywords = ["research", "ai", "agents", "web-scraping", "llm", "knowledge-base"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.11",
]
dynamic = ["dependencies"]
[project.scripts]
aria = "aria.cli:main"
[project.optional-dependencies]
scraping = [
"crawl4ai>=0.6.0",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"black>=24.0",
"isort>=5.13",
"flake8>=7.0",
"mypy>=1.10",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["aria*"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.black]
line-length = 88
target-version = ["py311"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"