-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from melexis/fix-artifacts
Convert to a namespace package and upgrade GitHub actions
- Loading branch information
Showing
13 changed files
with
74 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[build-system] | ||
requires = ["setuptools>=61", "setuptools_scm>=7.1.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
write_to = "mlx/robot2rst/__version__.py" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from setuptools import setup, find_packages | ||
from setuptools import find_namespace_packages, setup | ||
|
||
project_url = 'https://github.com/melexis/robot2rst' | ||
|
||
requires = ['robotframework>=3.2', 'mako'] | ||
|
||
setup( | ||
name='mlx.robot2rst', | ||
use_scm_version={'write_to': 'mlx/__robot2rst_version__.py'}, | ||
url=project_url, | ||
author='Jasper Craeghs', | ||
author_email='[email protected]', | ||
|
@@ -25,27 +24,26 @@ | |
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
'Topic :: Documentation', | ||
'Topic :: Documentation :: Sphinx', | ||
'Topic :: Utilities', | ||
], | ||
platforms='any', | ||
packages=find_packages(exclude=['tests', 'doc']), | ||
packages=find_namespace_packages(where=".", exclude=("doc.*", "doc", "build*")), | ||
package_dir={"": "."}, | ||
include_package_data=True, | ||
install_requires=requires, | ||
setup_requires=['setuptools_scm'], | ||
python_requires='>=3.7', | ||
namespace_packages=['mlx'], | ||
python_requires='>=3.8', | ||
keywords=['robot', 'robotframework', 'sphinx', 'traceability'], | ||
entry_points={ | ||
'console_scripts': [ | ||
'mlx.robot2rst = mlx.robot2rst:entrypoint', | ||
'robot2rst = mlx.robot2rst:entrypoint', | ||
'mlx.robot2rst = mlx.robot2rst.robot2rst:entrypoint', | ||
'robot2rst = mlx.robot2rst.robot2rst:entrypoint', | ||
] | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
sphinx: | ||
enabled: true | ||
min: 1 | ||
max: 1 | ||
exclude: | ||
- 'WARNING: cannot cache unpickable configuration value: .traceability_attributes_sort. \(because it contains a function, class, or module object\)' | ||
doxygen: | ||
enabled: false | ||
junit: | ||
enabled: false | ||
xmlrunner: | ||
enabled: false | ||
coverity: | ||
enabled: false | ||
robot: | ||
enabled: false | ||
polyspace: | ||
enabled: false |