spadix-cli 0.7.3__tar.gz → 0.7.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,5 @@
1
- Copyright (c) 2021 SafeAI
1
+ Copyright (C) 2021-2024 SafeAI
2
+ Copyright (C) 2025 Pronto.AI
2
3
 
3
4
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
5
  of this software and associated documentation files (the "Software"), to deal
@@ -1,25 +1,40 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: spadix-cli
3
- Version: 0.7.3
4
- Summary: SAF friendly wrapper for colcon
5
- Home-page: https://safeai.ai
3
+ Version: 0.7.5
4
+ Summary: A friendly wrapper for colcon
5
+ Home-page: https://pronto.ai
6
6
  Author: Serge Nikulin
7
- Author-email: serge@safeai.ai
7
+ Author-email: serge.nikulin@pronto.ai
8
8
  Maintainer: Serge Nikulin
9
- Maintainer-email: serge@safeai.ai
10
- Project-URL: Bug Tracker, https://gitlab.safeai.ai/production/spadix-cli
9
+ Maintainer-email: serge.nikulin@pronto.ai
10
+ Project-URL: Bug Tracker, https://github.com/Pronto-ai/spadix
11
11
  Keywords: spadix-cli
12
12
  Classifier: Programming Language :: Python :: 3
13
13
  Classifier: License :: OSI Approved :: MIT License
14
14
  Classifier: Operating System :: OS Independent
15
- Requires-Python: >=3.6
15
+ Requires-Python: >=3.8
16
16
  Description-Content-Type: text/markdown
17
17
  License-File: LICENSE
18
18
  Requires-Dist: setuptools
19
+ Dynamic: author
20
+ Dynamic: author-email
21
+ Dynamic: classifier
22
+ Dynamic: description
23
+ Dynamic: description-content-type
24
+ Dynamic: home-page
25
+ Dynamic: keywords
26
+ Dynamic: license-file
27
+ Dynamic: maintainer
28
+ Dynamic: maintainer-email
29
+ Dynamic: project-url
30
+ Dynamic: requires-dist
31
+ Dynamic: requires-python
32
+ Dynamic: summary
19
33
 
20
34
  # Spadix, a friendly wrapper for `colcon`
21
35
 
22
- Copyright (C) 2021 SafeAI
36
+ Copyright (C) 2021-2024 SafeAI
37
+ Copyright (C) 2025 Pronto.AI
23
38
 
24
39
  ## Why?
25
40
 
@@ -1,6 +1,7 @@
1
1
  # Spadix, a friendly wrapper for `colcon`
2
2
 
3
- Copyright (C) 2021 SafeAI
3
+ Copyright (C) 2021-2024 SafeAI
4
+ Copyright (C) 2025 Pronto.AI
4
5
 
5
6
  ## Why?
6
7
 
@@ -7,17 +7,17 @@ with open('README.md', 'r', encoding='utf-8') as fh:
7
7
 
8
8
  setuptools.setup(
9
9
  name='spadix-cli',
10
- version='0.7.3',
10
+ version='0.7.5',
11
11
  packages=setuptools.find_packages(exclude=['test']),
12
12
  install_requires=['setuptools'],
13
13
  package_data={'': []},
14
14
  author='Serge Nikulin',
15
- author_email='serge@safeai.ai',
15
+ author_email='serge.nikulin@pronto.ai',
16
16
  maintainer='Serge Nikulin',
17
- maintainer_email='serge@safeai.ai',
18
- url='https://safeai.ai',
17
+ maintainer_email='serge.nikulin@pronto.ai',
18
+ url='https://pronto.ai',
19
19
  project_urls={
20
- 'Bug Tracker': 'https://gitlab.safeai.ai/production/spadix-cli',
20
+ 'Bug Tracker': 'https://github.com/Pronto-ai/spadix',
21
21
  },
22
22
  keywords=['spadix-cli'],
23
23
  classifiers=[
@@ -25,10 +25,10 @@ setuptools.setup(
25
25
  'License :: OSI Approved :: MIT License',
26
26
  'Operating System :: OS Independent',
27
27
  ],
28
- description='SAF friendly wrapper for colcon',
28
+ description='A friendly wrapper for colcon',
29
29
  long_description=long_description,
30
30
  long_description_content_type='text/markdown',
31
- python_requires='>=3.6',
31
+ python_requires='>=3.8',
32
32
  tests_require=['pytest'],
33
33
  test_suite='test',
34
34
  entry_points={
@@ -1,5 +1,6 @@
1
1
  #!/usr/bin/env python3
2
2
  # Copyright 2019-2023 SafeAI, Inc.
3
+ # Copyright (C) 2025 Pronto.AI
3
4
  #
4
5
  # Licensed under the Apache License, Version 2.0 (the "License");
5
6
  # you may not use this file except in compliance with the License.
@@ -26,11 +27,12 @@ from sys import stderr
26
27
 
27
28
  from lark import Lark, Transformer, v_args
28
29
 
29
- __version__ = '0.7.3'
30
+ __version__ = '0.7.5'
30
31
 
31
32
  ###############################################################################
32
33
  USAGE = """
33
- Copyright (C) 2019--2023 SafeAI, by Serge Nikulin
34
+ Copyright (C) 2019-2024 SafeAI, Inc.
35
+ Copyright (C) 2025 Pronto.AI
34
36
  spadix version {version} is a friendly wrapper for colcon (collective construction build manager)
35
37
 
36
38
  Usage:
@@ -370,7 +372,7 @@ class command_line_parser:
370
372
  self.cmd_line.extend(RM_DIRS_WIN)
371
373
  else:
372
374
  self.cmd_line.extend(RM_DIRS_UNX)
373
- self.cmd_line.extend(['docs', 'latex', 'CTCHTML', 'coverage',
375
+ self.cmd_line.extend(['latex', 'CTCHTML', 'coverage',
374
376
  self.LOG_BASE, self.INSTALL_BASE, self.BUILD_BASE])
375
377
  elif arg.startswith('clean:'):
376
378
  self.cmd_line = []
@@ -430,7 +432,7 @@ class command_line_parser:
430
432
  self.pre_cmd_line.extend(RM_DIRS_WIN)
431
433
  else:
432
434
  self.pre_cmd_line.extend(RM_DIRS_UNX)
433
- self.pre_cmd_line.extend(['docs', 'latex', 'CTCHTML', 'coverage',
435
+ self.pre_cmd_line.extend(['latex', 'CTCHTML', 'coverage',
434
436
  self.LOG_BASE, self.INSTALL_BASE, self.BUILD_BASE])
435
437
  self.cmd_line.append('build')
436
438
  self.add_console_and_merge()
@@ -531,7 +533,7 @@ class command_line_parser:
531
533
  if is_debug:
532
534
  cmake_args.append(' -DCMAKE_BUILD_TYPE=Debug')
533
535
  else:
534
- cmake_args.append(' -DCMAKE_BUILD_TYPE=RelWithDebInfo')
536
+ cmake_args.append(' -DCMAKE_BUILD_TYPE=Release')
535
537
 
536
538
  if len(cmake_args) > 1:
537
539
  self.cmd_line.extend(cmake_args)
@@ -1,5 +1,6 @@
1
1
  #!/usr/bin/env python3
2
2
  # Copyright 2019-2023 SafeAI, Inc.
3
+ # Copyright (C) 2025 Pronto.AI
3
4
  #
4
5
  # Licensed under the Apache License, Version 2.0 (the "License");
5
6
  # you may not use this file except in compliance with the License.
@@ -1,25 +1,40 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: spadix-cli
3
- Version: 0.7.3
4
- Summary: SAF friendly wrapper for colcon
5
- Home-page: https://safeai.ai
3
+ Version: 0.7.5
4
+ Summary: A friendly wrapper for colcon
5
+ Home-page: https://pronto.ai
6
6
  Author: Serge Nikulin
7
- Author-email: serge@safeai.ai
7
+ Author-email: serge.nikulin@pronto.ai
8
8
  Maintainer: Serge Nikulin
9
- Maintainer-email: serge@safeai.ai
10
- Project-URL: Bug Tracker, https://gitlab.safeai.ai/production/spadix-cli
9
+ Maintainer-email: serge.nikulin@pronto.ai
10
+ Project-URL: Bug Tracker, https://github.com/Pronto-ai/spadix
11
11
  Keywords: spadix-cli
12
12
  Classifier: Programming Language :: Python :: 3
13
13
  Classifier: License :: OSI Approved :: MIT License
14
14
  Classifier: Operating System :: OS Independent
15
- Requires-Python: >=3.6
15
+ Requires-Python: >=3.8
16
16
  Description-Content-Type: text/markdown
17
17
  License-File: LICENSE
18
18
  Requires-Dist: setuptools
19
+ Dynamic: author
20
+ Dynamic: author-email
21
+ Dynamic: classifier
22
+ Dynamic: description
23
+ Dynamic: description-content-type
24
+ Dynamic: home-page
25
+ Dynamic: keywords
26
+ Dynamic: license-file
27
+ Dynamic: maintainer
28
+ Dynamic: maintainer-email
29
+ Dynamic: project-url
30
+ Dynamic: requires-dist
31
+ Dynamic: requires-python
32
+ Dynamic: summary
19
33
 
20
34
  # Spadix, a friendly wrapper for `colcon`
21
35
 
22
- Copyright (C) 2021 SafeAI
36
+ Copyright (C) 2021-2024 SafeAI
37
+ Copyright (C) 2025 Pronto.AI
23
38
 
24
39
  ## Why?
25
40
 
@@ -1,5 +1,6 @@
1
1
  #!/usr/bin/env python3
2
2
  # Copyright 2019-2023 SafeAI, Inc.
3
+ # Copyright (C) 2025 Pronto.AI
3
4
  #
4
5
  # Licensed under the Apache License, Version 2.0 (the "License");
5
6
  # you may not use this file except in compliance with the License.
File without changes
File without changes