Skip to content

Commit

Permalink
README: Add note about dots in package names
Browse files Browse the repository at this point in the history
Closes #58
  • Loading branch information
lunaynx authored Sep 15, 2022
1 parent 33f32b4 commit 57511d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ the known modules using a nicer syntax::
[tool.flake8.known-modules]
my-lib = ["mylib.drm", "mylib.encryption"]

Note that if the module's name contains dots, you have to quote it in pyproject.toml (e.g.
``"my_namespace.my_lib" = [...]``).

It is also possible to scan host's site-packages directory for installed packages. This feature is
disabled by default, but user can enable it with the ``--scan-host-site-packages`` command line
option. Please note, however, that the location of the site-packages directory will be determined
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[bdist_wheel]
universal = 1

[doc8]
max-line-length = 99

[isort]
force_single_line = true

0 comments on commit 57511d9

Please sign in to comment.