This repository was archived by the owner on Sep 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (67 loc) · 2 KB
/
pyproject.toml
File metadata and controls
74 lines (67 loc) · 2 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "nfl_data_py"
dynamic = ["version"]
requires-python = ">=3.6.1,<3.13"
description = "python library for interacting with NFL data"
urls = { homepage = "https://github.com/nflverse/nfl_data_py"}
authors = [{name = "cooperdff"}]
maintainers = [{name = "Alec Ostrander", email = "alec.ostrander@gmail.com"}]
readme = "README.md"
# license = "MIT"
# license-files = ["LICENSE"]
# Need to use the deprecated format until we drop Python 3.8 support
license = {text = "MIT"}
dependencies = [
"appdirs==1.*",
"fastparquet>0.5",
"numpy==1.*",
"pandas==1.*",
]
classifiers = [
# Trove classifiers. Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis',
'Operating System :: OS Independent',
]
[dependency-groups]
dev = [
"debugpy",
"invoke",
"ipykernel",
"ipython",
"jupyter",
"matplotlib",
"ruff",
"seaborn",
]
test = [
"pytest",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["nfl_data_py"]
[tool.setuptools.dynamic]
version = {attr = "nfl_data_py.__version__"}
[tool.ruff]
cache-dir = ".venv/.ruff_cache"
line-length = 90
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]
[tool.pytest.ini_options]
testpaths = ["nfl_data_py/tests"]
cache_dir = ".venv/.pytest_cache"