-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
37 lines (31 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import os
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.40.2',
description="""Python Package for scraping NHL Play-by-Play and Shift data.""",
long_description=read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
'Programming Language :: Python :: 3',
"Programming Language :: Python :: 2",
],
keywords='NHL',
url='https://github.com/HarryShomer/Hockey-Scraper',
author='Harry Shomer',
author_email='Harryshomer@gmail.com',
license='GNU General Public License v3 (GPLv3)',
packages=find_packages(),
install_requires=['BeautifulSoup4', 'requests', 'lxml', 'html5lib', 'pandas', 'pytest', 'pytz', 'tqdm'],
zip_safe=False,
package_data={
"": ["*.json"],
}
# entry_points={
# 'console_scripts': [
# 'hockey-scraper = hockey_scraper.cli:main',
# ],
# }
)