Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include package data #58

Merged
merged 3 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/full_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install package
run: |
python -m pip install --upgrade pip
pip install -e .[test]
pip install .[test]
pip install pytest
- name: Pytest
run: |
Expand Down
10 changes: 6 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "expipe_plugin_cinpla"
version = "0.1.1"
version = "0.1.2"
authors = [
{ name="Mikkel Lepperod", email="[email protected]" },
{ name="Alessio Buccino", email="[email protected]" },
Expand Down Expand Up @@ -40,9 +40,12 @@ build-backend = "setuptools.build_meta"


[tool.setuptools]
packages = ["expipe_plugin_cinpla"]
package-dir = {"expipe_plugin_cinpla" = "src/expipe_plugin_cinpla"}
include-package-data = true

[tool.setuptools.packages.find]
where = ["src"]
include = ["expipe_plugin_cinpla*"]
namespaces = false

[project.optional-dependencies]

Expand Down Expand Up @@ -70,6 +73,5 @@ omit = [
"tests/*",
]


[tool.black]
line-length = 120
Loading