diff --git a/.github/workflows/publish_pypi.yaml b/.github/workflows/publish_pypi.yaml index 809080ac3a..4d357eb140 100644 --- a/.github/workflows/publish_pypi.yaml +++ b/.github/workflows/publish_pypi.yaml @@ -16,7 +16,7 @@ jobs: - name: Twine Upload run: | - cd fides_cli/ + cd fidesctl/ python setup.py sdist twine upload dist/* env: diff --git a/README.md b/README.md index 8701e26c17..6ac00f7273 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Fides ships with default data taxonomies that include standard examples, but in #### Creating objects -1. Create the necessary objects (reference the sample manifest files in the `fides_cli/data/samples/`) +1. Create the necessary objects (reference the sample manifest files in the `fidesctl/data/samples/`) 1. `fidesctl apply /` to create the objects defined in that directory. This will create all objects _except_ for any systems contained within the manifest files. ## Rating your Systems diff --git a/fidesctl/Dockerfile b/fidesctl/Dockerfile index 97a010645e..fba4906930 100644 --- a/fidesctl/Dockerfile +++ b/fidesctl/Dockerfile @@ -14,8 +14,8 @@ RUN pip install -r requirements.txt RUN pip install -r dev-requirements.txt # Copy in the application files and install it locally -COPY . /fides_cli -WORKDIR /fides_cli +COPY . /fidesctl +WORKDIR /fidesctl RUN pip install -e . CMD ["/bin/bash"] diff --git a/fidesctl/setup.cfg b/fidesctl/setup.cfg index f815a5b4e3..5cbf3cb270 100644 --- a/fidesctl/setup.cfg +++ b/fidesctl/setup.cfg @@ -2,6 +2,6 @@ VCS = git style = pep440 versionfile_source = src/fidesctl/_version.py -versionfile_build = fides_cli/_version.py +versionfile_build = fidesctl/_version.py tag_prefix = parentdir_prefix =