Skip to content

Commit

Permalink
Export entire syrupy module (#28)
Browse files Browse the repository at this point in the history
* feat: export plugins

* wip: change from packages to py_modules

* wip: use find_packages
  • Loading branch information
Noah committed Dec 6, 2019
1 parent f4447f6 commit de60716
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
import sys
from datetime import datetime
from setuptools import setup
from setuptools import setup, find_packages

python_requires = "~=3.6"

Expand Down Expand Up @@ -31,7 +31,7 @@ def readme() -> str:
"write_to": "version.txt",
},
package_dir={"": "src"},
packages=["syrupy"],
packages=find_packages("./src"),
zip_safe=False,
install_requires=["pyyaml"],
setup_requires=["setuptools_scm"],
Expand Down

0 comments on commit de60716

Please sign in to comment.