-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 828 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 828 Bytes
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
[project]
name = "nemosis"
version = "3.8.1"
description = "A tool for accessing AEMO data."
authors = [
{ name = "nick-gorman", email = "n.gorman305@gmail.com"},
{ name = "prakaa", email = "abiprakash007@gmail.com" }
]
dependencies = [
"requests>=2.32.3",
"pyarrow>=17.0.0",
"feather-format>=0.4.1",
"pandas>=2.2.3",
"xlrd>=2.0.1",
"beautifulsoup4>=4.12.3",
"openpyxl>=3.1.5",
]
readme = "README.md"
requires-python = ">= 3.9"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
managed = true
dev-dependencies = [
"parameterized>=0.9.0",
"pyinstaller>=6.11.1",
"pytest>=8.3.4",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/nemosis"]
[tool.pytest.ini_options]
testpaths = ["tests"]