-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
26 lines (25 loc) · 1020 Bytes
/
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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="nba_scraper",
packages=["nba_scraper"],
version="1.0.10",
license="GNU General Public License v3.0",
description="A Python package to scrape the NBA api and return a play by play file",
long_description=long_description,
long_description_content_type="text/markdown",
author="Matthew Barlowe",
author_email="[email protected]",
url="https://github.com/mcbarlowe/nba_scraper",
download_url="https://github.com/mcbarlowe/nba_scraper/archive/v1.0.10.tar.gz",
keywords=["basketball", "NBA", "scraper"],
install_requires=["requests", "pandas", "numpy"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.7",
],
)