-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (44 loc) · 1.82 KB
/
setup.py
File metadata and controls
46 lines (44 loc) · 1.82 KB
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
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
# Read the contents of your README file
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="baseball-data-lab",
version="0.1.0", # Update version as needed
author="Timothy Fisher",
author_email="timothyf@gmail.com",
description="A Python application for generating advanced stat summary sheets for MLB players and teams.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/timothyf/baseball-data-lab", # Replace with your GitHub repository URL
packages=find_packages(), # Automatically find packages in the project
include_package_data=True,
install_requires=[
"pandas==2.2.3",
"numpy==2.1.1",
"matplotlib==3.9.2",
"seaborn==0.13.2",
"mplcursors==0.5.3",
"pybaseball==2.2.7",
"MLB-StatsAPI==1.9.0",
"requests==2.32.3",
"python-dotenv==1.0.0",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
'Topic :: Software Development :: Libraries',
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Data Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Games/Entertainment :: Sports",
"Topic :: Utilities",
],
python_requires=">=3.8", # Specify the minimum Python version required
)