Skip to content
Snippets Groups Projects
Commit 427076bf authored by nimrod's avatar nimrod
Browse files

Local development using setuptools and pip.

Need to document it, but I'm sure about this whole setup yet.
parent 3f4700e9
No related branches found
No related tags found
No related merge requests found
.envrc 0 → 100644
PYTHON_VERSION="$(python3 -c 'from sys import version_info as v; print(f"{v[0]}.{v[1]}")')"
export PYTHONPATH="$PWD/__pypackages__/$PYTHON_VERSION:${PYTHONPATH:-}"
......@@ -71,8 +71,6 @@ repos:
args:
- |-
--max-line-length=79
- |-
--with-tool=pyroma
- |-
--with-tool=bandit
- |-
......@@ -89,7 +87,6 @@ repos:
--no-autodetect
additional_dependencies:
- bandit
- pyroma
- repo: https://gitlab.com/pycqa/flake8.git
rev: 3.9.2
......
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools:build_meta"
requires = ["setuptools>=40.9.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "transmission_feeder"
......
import setuptools
if __name__ == "__main__":
setuptools.setup()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment