diff --git a/.github/workflows/python-test.yaml b/.github/workflows/python-test.yaml index e22fb2f..0b89211 100644 --- a/.github/workflows/python-test.yaml +++ b/.github/workflows/python-test.yaml @@ -24,7 +24,7 @@ jobs: python -m pip install --upgrade pip python -m pip install flake8 pip install setuptools wheel - pip install -r requirements.txt + pip install -r requirements_text.txt pip install . - name: Lint with flake8 run: | diff --git a/pyproject.toml b/pyproject.toml index 3ee6210..5b95fbb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "crimson-auto-pydantic" -version = "0.1.0" +version = "0.1.1" description = "Template Tools" readme = "README.md" authors = [ @@ -23,7 +23,8 @@ classifiers = [ dependencies = [ "pydantic", "crimson-code-extractor", - "crimson-ast-dev-tool" + "crimson-ast-dev-tool", + "inflection" ] requires-python = ">=3.9" diff --git a/requirements.txt b/requirements.txt index 1538f89..0e44c3c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,4 @@ -inflection -jinja2 +pydantic crimson-code-extractor crimson-ast-dev-tool -crimson-file-loader -pytest -pytest-cov +inflection diff --git a/requirements_dev.txt b/requirements_dev.txt new file mode 100644 index 0000000..e69de29 diff --git a/requirements_test.txt b/requirements_test.txt new file mode 100644 index 0000000..9955dec --- /dev/null +++ b/requirements_test.txt @@ -0,0 +1,2 @@ +pytest +pytest-cov