Skip to content

Commit

Permalink
Clean up structure of Python files
Browse files Browse the repository at this point in the history
  • Loading branch information
w0rp committed Feb 8, 2023
1 parent dd5a114 commit 4becbd3
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
tags
.directory
/env
16 changes: 16 additions & 0 deletions install-python-env.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env bash
#
# This script is not necessary for running the Neural plugin.
#
# This is merely for making it easy for Neural developers to develop the Python
# parts.
#
# ALE is recommended for linting and fixing Python files.

set -eu

if ! [ -d env ]; then
python3.10 -m venv env
fi

env/bin/pip install pyright ruff==0.0.237
1 change: 0 additions & 1 deletion neural_datasources/.gitignore

This file was deleted.

9 changes: 0 additions & 9 deletions neural_datasources/install-env.sh

This file was deleted.

File renamed without changes.

0 comments on commit 4becbd3

Please sign in to comment.