-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
32 lines (29 loc) · 1.04 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "simple-justwatch-python-api"
authors = [{name = "Electronic Mango", email = "[email protected]"}]
version = "0.16"
description="A simple JustWatch Python API"
readme = "README.md"
license = {file = "LICENSE"}
dependencies = ["httpx"]
requires-python = ">= 3.11"
keywords = ["justwatch", "api", "graphql"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Homepage = "https://github.com/Electronic-Mango/simple-justwatch-python-api"
Documentation = "https://electronic-mango.github.io/simple-justwatch-python-api"
Repository = "https://github.com/Electronic-Mango/simple-justwatch-python-api"
[tool.pytest.ini_options]
pythonpath = [
"src", "test"
]