-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
26 lines (25 loc) · 974 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_parser",
packages=["nba_parser"],
version="0.2.1",
license="GNU General Public License v3.0",
description="python package to clean up ETL functions using nba_scraper output as input",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mcbarlowe/nba_parser",
author="Matthew Barlowe",
author_email="[email protected]",
keywords=["basketball", "NBA"],
install_requires=["pandas", "numpy", "sklearn"],
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",
"Programming Language :: Python :: 3.8",
],
)