Skip to content

Commit

Permalink
MANIFEST.in to explicitly include data files
Browse files Browse the repository at this point in the history
  • Loading branch information
Victorlouisdg committed Jan 30, 2024
1 parent 47d4c7d commit 5ae81d1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
recursive-include airo_models *
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "airo-models"
version = "0.0.1"
version = "0.0.2"
authors = [
{ name = "Andreas Verleysen", email = "[email protected]" },
{ name = "Victor-Louis De Gusseme", email = "[email protected]" },
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import setuptools
from setuptools import find_packages
from setuptools import find_namespace_packages

setuptools.setup(
packages=find_packages(),
packages=find_namespace_packages(),
)

0 comments on commit 5ae81d1

Please sign in to comment.