-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 1.18 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
[tool.poetry]
name = "api-sports-io-nfl"
version = "0.0.2"
description = "API Wrapper for api-sports.io's NFL feeds."
authors = ["Ian Pittwood <pittwoodian@gmail.com>"]
maintainers = ["Ian Pittwood <pittwoodian@gmail.com>"]
repository = "https://github.com/ianpittwood/api-sports-io-nfl"
license = "Apache 2.0"
readme = "README.md"
keywords = ["api", "sports", "nfl", "api-sports.io", "football", "american football", "gridiron"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.31.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.6.0"
black = "^23.12.1"
isort = "^5.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[virtualenvs]
create = true
in-project = true