Replies: 2 comments
-
wheel tree is not the good one : |
Beta Was this translation helpful? Give feedback.
0 replies
-
Kssssss... formatting is not kept... better now └── src |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
this is my actuel tree :
├── data
├── debian
├── dev_utils
├── dist
├── src
│ ├── interfaces
│ └── pymecavideo
│ ├── data
│ │ ├── help
│ │ ├── icones
│ │ ├── lang
│ │ └── video
│ ├── interfaces
│ └── test
└── tests
I've done some copy in 'src' in order to be in packaging demo organization. (this is why there is a pymecavideo directory inside /src)
When i launch a wheel construction, this is repertory I have :
└── src
├── interfaces
└── pymecavideo
├── data
│ ├── help
│ │ └── dev
│ ├── icones
│ ├── lang
│ └── video
├── interfaces
└── test
But I need to have a "pymecavideo" instead of "src/pymecavideo".
I don't understand what is the issue.
Here are my configuration :
[tool.hatch.build]
ignore-vcs = true
include = [
"src",
]
exclude = [
".git",
"debian",
"Makefile",
"*.xml",
"dev_utils",
"install.py",
"setup.py",
"pymecavideo.iss",
"pymecavideo_project.pro",
"tests",
]
Beta Was this translation helpful? Give feedback.
All reactions