This repository was archived by the owner on Feb 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
96 lines (85 loc) · 1.87 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[tool.poetry]
name = "opennem"
version = "3.8.0"
description = "OpenNEM Australian Energy Data Python Client"
authors = ["Nik Cubrilovic <nik@infotorch.org>", "Dylan McConnell <dylan.mcconnell@unimelb.edu.au>"]
license = "MIT"
readme = "README.md"
homepage = "https://developers.opennem.org.au"
repository = "https://github.com/opennem/opennempy"
keywords = ["opennem", "analysis", "energy", "data", "electricity", "australia"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries"
]
include = [
]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.25.1"
pydantic = "^1.5.1"
click = "^7.1.2"
requests_cache = "^0.5.2"
python-dateutil = "^2.8.1"
python-dotenv = "^0.15.0"
PyYAML = "^5.4.1"
tomlkit = "^0.7.0"
[tool.poetry.dev-dependencies]
black = "^21.4b2"
flake8 = "^3.7.8"
isort = "^5.6.4"
pylint = "^2.2"
rope = "^0.19.0"
ipython = "^7.15.0"
pytest = "^6.1.2"
pytest-watch = "^4.2.0"
mypy = "^0.812"
pycodestyle = "^2.6.0"
pytest-benchmark = {extras = ["histogram"], version = "^3.2.3"}
pdbpp = "^0.10.2"
pytest-sugar = "^0.9.4"
myst-parser = "^0.13.5"
pydocstyle = "^6.0.0"
sphinx-autobuild = "^2021.3.14"
Sphinx = "^3.5.3"
rstcheck = "^3.3.1"
sphinx-rtd-theme = "^0.5.1"
watchdog = "^2.0.3"
[tool.poetry.scripts]
opennem = 'opennem.cli:main'
[tool.black]
line-length = 99
target_version = ['py38']
include = '\.pyi?$'
exclude = '''
/(\.git/
|\.eggs
|__pycache__
|\.cache
|\.ipynb_checkpoints
|\.mypy_cache
|\.pytest_cache
|\.tox
|\.venv
|node_modules
|_build
|buck-out
|build
|dist
|media
|infrastructure
|templates
|locale
)/
'''
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 99
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"