-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (45 loc) · 951 Bytes
/
pyproject.toml
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
47
48
49
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bullpen"
version = "0.1.0"
authors = [
{ name="loganthomas", email="logan.thomas005@gmail.com" },
]
description = "Predicting Pitcher's Expected K%"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"beautifulsoup4",
"ftfy",
"grip",
"html5lib",
"jupyterlab",
"lxml",
"matplotlib",
"numpy==1.26.4",
"pandas",
"plotly",
"pytest",
"pytest-cov",
"pytest-subtests",
"requests",
"responses",
# "rich",
"seaborn",
"scikit-learn==1.5.1",
"statsmodels",
"tabulate",
# "tensorflow",
"xgboost==1.7.6",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = ""
"Bug Tracker" = ""
[tool.pytest.ini_options]
addopts = "--cov=./ --cov-report term-missing --color=yes --disable-warnings"