From 28d43e9a2c9a826de456484094f8743a8931091d Mon Sep 17 00:00:00 2001 From: 0ssigeno Date: Thu, 5 Jan 2023 09:04:16 +0100 Subject: [PATCH] Fixing pypi installation --- .github/workflows/pythonpublish.yml | 2 +- MANIFEST.in | 6 ------ pyproject.toml | 3 --- 3 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 MANIFEST.in diff --git a/.github/workflows/pythonpublish.yml b/.github/workflows/pythonpublish.yml index 6b9baed..61d80a7 100644 --- a/.github/workflows/pythonpublish.yml +++ b/.github/workflows/pythonpublish.yml @@ -22,7 +22,7 @@ jobs: - name: Build a source tarball run: | - python -m build --sdist --outdir dist/ + python -m build --sdist --wheel --outdir dist/ - name: Publish to PyPi uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index 323a4a6..0000000 --- a/MANIFEST.in +++ /dev/null @@ -1,6 +0,0 @@ -include README.md -include requirements.txt -include dev-requirements.txt -include LICENSE.txt -include version.py -include pyproject.toml \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index ac6d6b5..748c2cf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,6 @@ classifiers = [ ] dynamic = ["version", "dependencies"] - [project.urls] homepage = "https://github.com/certego/atlasq" repository = "https://github.com/certego/atlasq" @@ -39,8 +38,6 @@ documentation = "https://github.com/certego/atlasq/README.md" source = "https://github.com/certego/atlasq" tracker = "https://github.com/certego/atlasq/issues" -[tool.setuptools] -py-modules = ["atlasq"] [tool.setuptools_scm] write_to = "./version.py"