Skip to content

Commit

Permalink
Fix #60, do not package tests directory
Browse files Browse the repository at this point in the history
According to the following link we can remove the call to
`find_packages` because the default behavior will do the correct thing:

https://setuptools.pypa.io/en/latest/userguide/package_discovery.html#flat-layout
  • Loading branch information
mschwager committed Jun 13, 2024
1 parent 307b301 commit be11dd4
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
from setuptools import (
find_packages,
setup,
)

import os

from setuptools import setup

import dlint

requirements_filename = os.path.join(
Expand Down Expand Up @@ -32,7 +29,6 @@
long_description=long_description,
long_description_content_type='text/markdown',
url=dlint.__url__,
packages=find_packages(),
license=dlint.__license__,
classifiers=[
'Environment :: Console',
Expand Down

0 comments on commit be11dd4

Please sign in to comment.