-
Notifications
You must be signed in to change notification settings - Fork 70
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
FIX: Fix setuptools warning. #90
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,8 +67,8 @@ dev = [ | |
test = ["pytest", "scipy"] | ||
marine = ["marine>=0.0.5"] | ||
|
||
[tool.setuptools.packages] | ||
find.namespaces = false | ||
[tool.setuptools.packages.find] | ||
include = ["pyopenjtalk*"] | ||
Comment on lines
-70
to
+71
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Get the warning:
|
||
|
||
[tool.setuptools.exclude-package-data] | ||
"*" = ["*.pyx", "*.pxd"] | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Get the warning:
warning: no files found matching 'LICENSE' under directory 'lib'
.This is because there is no file called
LICENSE
in thelib
directory.