diff --git a/.gitignore b/.gitignore index 7ab1166d..a7f01ef4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ Export/* -ProjectFiles/*/pydss Settings/* +ProjectFiles/*/pydss +Settings/* __pycache__/* */__pycache__/* __pycache__ diff --git a/Dockerfile b/Dockerfile index f6d76477..2666c64b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,10 @@ FROM python:3.7.0-slim RUN apt-get update # Copy the source code -COPY . /PyDSS +COPY . /pydss # Change directory to the src folder -WORKDIR /PyDSS +WORKDIR /pydss RUN pip install --upgrade setuptools RUN pip install --upgrade pip diff --git a/_config.yml b/_config.yml deleted file mode 100644 index c4192631..00000000 --- a/_config.yml +++ /dev/null @@ -1 +0,0 @@ -theme: jekyll-theme-cayman \ No newline at end of file diff --git a/dist/dsspy-3.1.1-py3-none-any.whl b/dist/dsspy-3.1.1-py3-none-any.whl deleted file mode 100644 index 08417e3e..00000000 Binary files a/dist/dsspy-3.1.1-py3-none-any.whl and /dev/null differ diff --git a/dist/dsspy-3.1.1.tar.gz b/dist/dsspy-3.1.1.tar.gz deleted file mode 100644 index 66ccc562..00000000 Binary files a/dist/dsspy-3.1.1.tar.gz and /dev/null differ diff --git a/pyproject.toml b/pyproject.toml index ce019650..f032fdb0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -68,8 +68,8 @@ path = "pydss/__init__.py" [tool.hatch.build.targets.sdist] include = [ - "pydss", + "/pydss", ] [tool.hatch.build.targets.wheel] -packages = ["pydss"] \ No newline at end of file +packages = ["/pydss"] \ No newline at end of file