-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (67 loc) · 2.09 KB
/
pyproject.toml
File metadata and controls
78 lines (67 loc) · 2.09 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
[project]
name = 'slim-cli'
dynamic = ['version']
requires-python = '>=3.10'
dependencies = [
# Note: these dependencies were taking from original `requirements.txt`
# file (now retired in favor of this file, `pyproject.toml`). However,
# pessimistic version constraints were added in order to avoid the
# Dependency Confusion Vulnerability.
'azure-identity ~= 1.17.1',
'gitpython ~= 3.1.43',
'ollama ~= 0.3.1',
'openai ~= 1.42.0',
'python-dotenv ~= 1.0.1',
'requests ~= 2.32.3',
'rich >= 13.9.4',
'numpy ~= 2.0.2',
# New dependencies for integrated documentation generation
'pyyaml ~= 6.0.1',
'jinja2 ~= 3.1.0',
'typer >= 0.9.0',
'click ~= 8.1.0',
'litellm>=1.40.0',
# Commenting-out tabulate since it's not used in the code currenty:
# 'tabulate ~= 0.9.0',
"pip>=25.1.1",
]
authors = [
{name = 'Rishi Verma', email='[email protected]'},
{name = 'Kyongsik Yun', email='[email protected]'},
{name = 'Sean Kelly', email='[email protected]'}
]
description = 'Automation of the application of software lifecycle best practices to your GitHub repositories'
readme = 'README.md'
keywords = ['software', 'development', 'automation', 'practice', 'slim', 'nasa', 'ammos']
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
]
license = {file = 'LICENSE'}
[project.urls]
Homepage = 'https://github.com/SLIM/slim-cli'
Issues = 'https://github.com/SLIM/slim-cli/issues'
[project.scripts]
slim = 'jpl.slim.cli:main'
[tool.hatch.version]
path = 'src/jpl/slim/VERSION.txt'
pattern = '(?P<version>.+)'
[tool.hatch.build.targets.wheel]
packages = ['src/jpl']
[build-system]
requires = ['hatchling']
build-backend = 'hatchling.build'
[dependency-groups]
dev = [
"pytest>=8.4.1",
]
mcp = [
"fastmcp>=0.3.0",
"mcp>=1.1.0",
]