Skip to content

Commit

Permalink
Merge pull request #4 from life360/pk/fix-build
Browse files Browse the repository at this point in the history
bugfix: fix wheel build
  • Loading branch information
Patrick K authored Jul 3, 2020
2 parents 93bfeda + 40b4e9e commit 2263d02
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 2263d02

Please sign in to comment.