-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (97 loc) · 2.49 KB
/
pyproject.toml
File metadata and controls
109 lines (97 loc) · 2.49 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
101
102
103
104
105
106
107
108
[project]
name = "astrio-atlas"
version = "0.3.5"
description = "Atlas: Legacy to Modern code modernization"
readme = "README.md"
requires-python = ">=3.14"
license = {text = "Apache-2.0"}
authors = [
{name = "Astrio AI", email = "naingoolwin.astrio@gmail.com"}
]
keywords = ["cobol", "python", "modernization", "transpilation", "agents"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"litellm>=1.75.0",
"gitpython>=3.1.0",
"diskcache>=5.6.0",
"grep-ast>=0.9.0",
"pathspec>=0.12.0",
"prompt-toolkit>=3.0.0",
"rich>=14.0.0",
"watchfiles>=1.0.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"importlib-resources>=6.0.0",
"json5>=0.12.0",
"shtab>=1.7.0",
"configargparse>=1.7.0",
"diff-match-patch>=20241021",
"beautifulsoup4>=4.13.0",
"pyyaml>=6.0.0",
"psutil>=7.0.0",
"pexpect>=4.9.0",
"pillow>=11.0.0",
"pypandoc>=1.15",
"pyperclip>=1.9.0",
"networkx>=3.4.0",
"scipy>=1.15.0",
"socksio>=1.0.0",
"tqdm>=4.67.0",
"pygments>=2.19.0",
"urllib3>=2.6.3", # Security: Fixes decompression-bomb safeguards bypass
"aiohttp>=3.13.3", # Security: Fixes multiple vulnerabilities (zip bomb, DoS, etc.)
"markdown-it-py>=4.0.0",
"packaging>=25.0",
"backoff>=2.2.0",
"posthog>=6.5.0",
"mixpanel>=4.10.0",
"oslex>=0.1.3",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
playwright = [
"playwright>=1.40.0",
]
[project.scripts]
atlas = "cli.main:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 100
target-version = ['py314']
[tool.ruff]
line-length = 100
target-version = "py314"
[tool.mypy]
python_version = "3.14"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
asyncio_mode = "auto"
[tool.setuptools.packages.find]
include = ["src*", "cli*"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"src.resources" = ["*.yml", "*.json"]
"src" = ["queries/**/*.scm"]