Skip to content

Commit

Permalink
bugfix: itsybitsy.itsybitsy_spider namespace package files were not i…
Browse files Browse the repository at this point in the history
…ncluded in build/wheel
  • Loading branch information
Patrick Kennel committed Jul 3, 2020
1 parent 93bfeda commit 40b4e9e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@
* [x] REFACTOR: (all): refactor package architecture
* [x] TIMEOUT: (crawl) robust provider timeout and exception handling
* [x] OBSCURIFIER (render_*): obscurifier for output
* [x] BUG: fix namespace package not being include in dist
* [ ] DOCS: remove non obfuscated example video from README
* [ ] LOGGER: rewrite logger access for community standards
* [ ] PLUGPLAY: out of the box functionality by moving TCP to a "builtin" CrawlStrategy and using `hostname` or default service name
* [ ] REFACTOR: (providers): rewrite take_a_hint to not return a list, just return a single NodeTransport
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import re
from setuptools import setup
from setuptools import setup, find_namespace_packages

version = re.search(
r'^__version__\s*=\s*"(.*)"',
Expand All @@ -19,7 +19,7 @@
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/life360/itsybitsy",
packages=["itsybitsy"],
packages=['itsybitsy', 'itsybitsy.itsybitsy_plugins'],
entry_points={
"console_scripts": ['itsybitsy = itsybitsy.itsybitsy:main']
},
Expand Down

0 comments on commit 40b4e9e

Please sign in to comment.