-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
97 lines (92 loc) · 2.43 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
97
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tell"
description = "An open-source Python package to model future hourly total electricity loads."
readme = "README.md"
version = "1.3.0"
requires-python = ">=3.9,<3.11"
license = {file = "LICENSE"}
authors = [
{name = "Casey McGrath", email = "[email protected]"},
{name = "Casey Burleyson", email = "[email protected]"},
{name = "Chris Vernon", email = "[email protected]"},
{name = "Em Rexer", email = "[email protected]"},
{name = "Aowabin Rahman", email = "[email protected]"},
]
maintainers = [
{name = "Casey McGrath", email = "[email protected]"},
{name = "Casey Burleyson", email = "[email protected]"},
{name = "Chris Vernon", email = "[email protected]"},
{name = "Em Rexer", email = "[email protected]"},
]
dependencies = [
"setuptools>=49.2.1",
"attrs>=21.4.0",
"certifi>=2021.10.8",
"charset-normalizer>=2.0.12",
"click>=8.0.3",
"click-plugins>=1.1.1",
"cligj>=0.7.2",
"convertdate>=2.4.0",
"cycler>=0.11.0",
"Fiona>=1.8.21",
"fonttools>=4.29.1",
"geopandas>=0.10.2",
"hijri-converter>=2.2.3",
"holidays>=0.13",
"idna>=3.3",
"joblib>=1.1.0",
"kiwisolver>=1.3.2",
"korean-lunar-calendar>=0.2.1",
"matplotlib>=3.5.1",
"munch>=2.5.0",
"numpy>=1.21.5,<2",
"openpyxl>=3.0.9",
"packaging>=21.3",
"pandas>=1.3.5",
"Pillow>=9.0.1",
"PyMeeus>=0.5.11",
"pyparsing>=3.0.7",
"pyproj>=3.2.1",
"python-dateutil>=2.8.2",
"pytz>=2021.3",
"PyYAML>=6.0",
"requests>=2.27.1",
"Rtree>=0.9.7",
"scikit-learn==1.0.2",
"scipy>=1.7.3",
"Shapely>=1.8.0",
"six>=1.16.0",
"threadpoolctl>=3.1.0",
"urllib3>=1.26.8",
"fastparquet>=0.8.3"
]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[project.optional-dependencies]
test = [
"pytest>=6.2.4",
"pytest-cov>=2.12.1"
]
docs = [
"build>=0.5.1",
"nbsphinx>=0.8.6",
"recommonmark>=0.7.1",
"setuptools>=57.0.0",
"sphinx<8,>=6",
"sphinx-design>=0.6.1",
"sphinx-rtd-theme>=2.0.0",
]
deploy = [
"twine>=3.4.1",
]
[project.urls]
Repository = "https://github.com/IMMM-SFA/tell"
Documentation = "https://immm-sfa.github.io/tell"
[tool.hatch.build]
packages = ["tell"] # set importable package name to "tell"
include = ["tell"]