generated from NASA-AMMOS/slim-starterkit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
57 lines (46 loc) · 1.63 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
[project]
name = 'slim-leaderboard'
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.
'requests ~= 2.32.3',
'requests-cache ~= 1.2.1',
'tqdm ~= 4.66.6',
'rich ~= 13.9.4'
]
authors = [
{name = 'Kyongsik Yun', email = '[email protected]'},
{name = 'Rishi Verma', email = '[email protected]'},
{name = 'Sean Kelly', email = '[email protected]'}
]
description = 'Tool to generate a scan report of SLIM best practices compliance'
readme = 'README.md'
keywords = ['software', 'development', 'automation', 'practice', 'slim', 'nasa', 'ammos', 'report']
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-leaderboard'
Issues = 'https://github.com/SLIM/slim-leaderboard/issues'
[project.scripts]
slim-leaderboard = 'jpl.slim.leaderboard: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'