Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions clearbit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
from .enrichment import Company
from .enrichment import Person
from .enrichment import PersonCompany
from prospector import Prospector
from .prospector import Prospector
from clearbit.resource import Resource
from reveal import Reveal
from risk import Risk
from name_to_domain import NameToDomain
from .reveal import Reveal
from .risk import Risk
from .name_to_domain import NameToDomain
from clearbit.watchlist import Watchlist
from clearbit.watchlist import Entity as WatchlistEntity
from clearbit.watchlist import Individual as WatchlistIndividual
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,13 @@ def read(*paths):
cmdclass={'build_py': build_py},
version=VERSION,
description='Clearbit python bindings',
long_description=read('README.rst'),
long_description=read('README.md'),
author='Clearbit',
author_email='[email protected]',
url='https://clearbit.com',
packages=['clearbit', 'clearbit.enrichment'],
package_data={'clearbit': ['../VERSION']},
install_requires=install_requires,
use_2to3=True,
include_package_data=True,
test_suite='tests',
classifiers=[
Expand Down