Skip to content

Commit

Permalink
Fix pyproject.toml for dynamic __version population
Browse files Browse the repository at this point in the history
  • Loading branch information
tekktrik committed Jul 22, 2022
1 parent 2a77808 commit e4ce154
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ requires = [
[project]
name = "adafruit-circuitpython-bme680"
description = "CircuitPython driver for BME680 sensor over I2C"
version = "0.0.0-auto.0"
readme = "README.rst"
authors = [
{name = "Adafruit Industries", email = "[email protected]"}
Expand All @@ -38,12 +39,10 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dynamic = ["version", "dependencies"]
dynamic = ["dependencies"]

[tool.setuptools]
py-modules = ["adafruit_bme680"]

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}

[tool.setuptools_scm]

0 comments on commit e4ce154

Please sign in to comment.