Skip to content

Commit

Permalink
Address reviewer comments
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamRJensen committed Oct 23, 2024
1 parent 6fe0e7c commit c5f0fb5
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
[build-system]
requires = ["setuptools", "setuptools-scm"]
requires = [
"setuptools>61", # start of support for pyproject.toml/PEP 621. https://setuptools.pypa.io/en/stable/history.html#v61-0-0
"setuptools-scm",
]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
[tool.setuptools_scm] # set version dynamically

[tool.setuptools.packages.find]
exclude = [
"twoaxistracking.tests*",
"twoaxistracking.data*",
]

[project]
name = "twoaxistracking"
authors = [
{name = "Adam R. Jensen", email = "[email protected]"},
{name = "Adam R. Jensen"},
{name = "Kevin S. Anderson"},
{email = "[email protected]"},
]
description = "twoaxistracking is a python package for simulating two-axis tracking solar collectors, particularly self-shading."
readme = "README.md"
Expand All @@ -23,7 +33,6 @@ classifiers = [
"Intended Audience :: Science/Research",
]
dependencies = [
'importlib-metadata; python_version<"3.10"',
"numpy",
"matplotlib",
"shapely",
Expand Down

0 comments on commit c5f0fb5

Please sign in to comment.