-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (39 loc) · 1.32 KB
/
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
[build-system]
requires = ["setuptools","wheel","pandas","tqdm","requests"]
build-backend = "setuptools.build_meta"
[project]
name = "cfbd_json_py"
version = "0.2.4"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Joseph Armstrong", email="[email protected]"}
]
maintainers = [
{name = "Joseph Armstrong", email="[email protected]"}
]
description = "Allows users to access the CFBD API, and get the resulting data in either a dictionary (think JSON), or in a pandas DataFrame (think spreadsheet)."
keywords = ['sports','football','college','college football']
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13'
]
dependencies = [
"setuptools>=67.6.0",
"wheel",
"pyarrow>=11.0.0",
"pandas>=2.2.2",
"tqdm",
"requests",
"keyring"
]
[project.urls]
homepage = "https://github.com/armstjc/cfbd-json-py"
documentation = "https://armstjc.github.io/cfbd-json-py/cfbd_json_py.html"
repository = "https://github.com/armstjc/cfbd-json-py.git"
changelog = "https://github.com/armstjc/cfbd-json-py/blob/main/CHANGELOG.md"