๐Ÿ“ฆ rmedranollamas / x

๐Ÿ“„ pyproject.toml ยท 37 lines
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[project]
name = "x-agent"
version = "0.1.0"
description = "A command-line tool to manage X interactions with agents."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
    "aiohttp>=3.13.2",
    "aiosmtplib>=5.0.0",
    "async-lru>=2.0.5",
    "pydantic-settings>=2.12.0",
    "tenacity>=9.1.2",
    "tweepy",
    "typer>=0.20.1",
]

[project.scripts]
x-agent = "x_agent.cli:main"

[tool.setuptools.packages.find]
where = ["src"]

[tool.uv]
package = true

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[dependency-groups]
dev = [
    "pytest>=8.4.2",
    "pytest-asyncio>=1.3.0",
    "pytest-cov>=7.0.0",
    "pytest-mock>=3.15.1",
]