-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MANIFEST.in to explicitly include data files
- Loading branch information
1 parent
47d4c7d
commit 5ae81d1
Showing
3 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
recursive-include airo_models * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]" }, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(), | ||
) |