generated from NASA-AMMOS/slim-starterkit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
64 lines (52 loc) · 1.8 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
[project]
name = 'slim-cli'
dynamic = ['version']
requires-python = '>=3.7'
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.7.1',
'numpy ~= 2.0.2'
# Commenting-out tabulate since it's not used in the code currenty:
# 'tabulate ~= 0.9.0',
]
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'