-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
73 lines (65 loc) · 1.75 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
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
[build-system]
requires = ["hatchling >= 1.13.0"]
build-backend = "hatchling.build"
[project]
name = "solcast"
description = "a simple Python SDK for the Solcast API"
readme = "README.md"
requires-python = ">=3.7"
license = "Apache-2.0"
classifiers = [
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"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",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://pypi.org/project/solcast/"
Documentation = "https://solcast.github.io/solcast-api-python-sdk"
Repository = "https://github.com/Solcast/solcast-api-python-sdk"
[project.optional-dependencies]
docs = [
"pytest",
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]==0.25",
"mkdocs-jupyter",
"kaleido"
]
all = [
"notebook",
"matplotlib",
"pandas",
"black",
"solcast[docs]"
]
[tool.hatch.version]
path = "solcast/__init__.py"
[tool.mypy]
strict = true
xfail_strict = true
junit_family = "xunit2"
[tool.coverage.run]
parallel = true
source = [
"docs",
"tests",
"solcast"
]
context = '${CONTEXT}'