-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.14 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ws-api"
version = "0.32.1"
description = "Access your Wealthsimple account using their (GraphQL) API."
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Guillaume Boudreau", email = "guillaume@pommepause.com"},
]
maintainers = [
{name = "Guillaume Boudreau", email = "guillaume@pommepause.com"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10"
dependencies = [
"requests",
]
keywords = ["wealthsimple"]
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
]
[project.urls]
Homepage = "https://github.com/gboudreau/ws-api-python"
Repository = "https://github.com/gboudreau/ws-api-python"
[tool.hatch.build.targets.wheel]
packages = ["ws_api"]
[dependency-groups]
dev = [
"pytest",
"pytest-cov>=7.0.0",
"ruff",
]