bhgomes/oeis

View on GitHub
setup.py

Summary

Maintainability
A
0 mins
Test Coverage

Starting a process with a partial executable path
Open

        os.system(
            "twine upload --repository-url https://upload.pypi.org/legacy/ dist/*"
Severity: Info
Found in setup.py by bandit

Use of exec detected.
Open

        exec(f.read(), version)
Severity: Minor
Found in setup.py by bandit

Starting a process with a shell, possible injection detected, security issue.
Open

        os.system(f"{sys.executable} setup.py sdist bdist_wheel --universal")
Severity: Major
Found in setup.py by bandit

Starting a process with a shell: Seems safe, but may be changed in the future, consider rewriting without shell
Open

        os.system(
            "twine upload --repository-url https://upload.pypi.org/legacy/ dist/*"
Severity: Info
Found in setup.py by bandit

There are no issues that match your filters.

Category
Status