Skip to content

Commit

Permalink
Fixed directory issue
Browse files Browse the repository at this point in the history
  • Loading branch information
HarryShomer committed May 15, 2019
1 parent ba6f44e commit 3249208
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file modified hockey_scraper/.DS_Store
Binary file not shown.
6 changes: 3 additions & 3 deletions hockey_scraper/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import hockey_scraper.nwhl.scrape_functions as nwhl
from hockey_scraper.nhl.live_scrape import ScrapeLiveGames, LiveGame
from hockey_scraper.nhl.scrape_functions import scrape_games, scrape_date_range, scrape_seasons
from .nwhl import scrape_functions as nwhl
from .nhl.live_scrape import ScrapeLiveGames, LiveGame
from .nhl.scrape_functions import scrape_games, scrape_date_range, scrape_seasons
from .utils import shared
Binary file added hockey_scraper/nhl/.DS_Store
Binary file not shown.
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import os
from setuptools import setup
from setuptools import setup, find_packages


def read():
return open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()

setup(
name='hockey_scraper',
version='1.32',
version='1.32.3',
description="""This package is designed to allow one to scrape the raw data for both the National Hockey League
(NHL) and the National Women's Hockey League (NWHL) off of their respective API and websites.""",
long_description=read(),
Expand All @@ -23,8 +23,7 @@ def read():
author='Harry Shomer',
author_email='Harryshomer@gmail.com',
license='MIT',
packages=['hockey_scraper'],
packages=find_packages(),
install_requires=['BeautifulSoup4', 'requests', 'lxml', 'html5lib', 'pandas', 'sphinx', 'pytest'],
include_package_data=True,
zip_safe=False
)

0 comments on commit 3249208

Please sign in to comment.