-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from IMMM-SFA/dev
Upgrade to v1.3.0
- Loading branch information
Showing
11 changed files
with
103 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 = "casey.mcgrath@pnnl.gov"}, | ||
{name = "Casey Burleyson", email = "casey.burleyson@pnnl.gov"}, | ||
{name = "Chris Vernon", email = "chris.vernon@pnnl.gov"}, | ||
{name = "Em Rexer", email = "emily.rexer@pnnl.gov"}, | ||
{name = "Aowabin Rahman", email = "aowabin.rahman@pnnl.gov"}, | ||
] | ||
maintainers = [ | ||
{name = "Casey McGrath", email = "casey.mcgrath@pnnl.gov"}, | ||
{name = "Casey Burleyson", email = "casey.burleyson@pnnl.gov"}, | ||
{name = "Chris Vernon", email = "chris.vernon@pnnl.gov"}, | ||
{name = "Em Rexer", email = "emily.rexer@pnnl.gov"}, | ||
] | ||
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>=4.0.2", | ||
"sphinx-panels>=0.6.0", | ||
"sphinx-rtd-theme>=1.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"] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,4 +25,4 @@ | |
from .visualization import * | ||
|
||
# Set the current version of TELL: | ||
__version__ = '1.2.1' | ||
__version__ = '1.3.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters