Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,20 @@ license = { text = "MPL-2.0" }
authors = [{ name = "HashiCorp" }]
requires-python = ">=3.10"
dependencies = ["requests>=2.25.0"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

[project.optional-dependencies]
dev = ["pytest>=7.0.0", "mypy>=1.17.1", "ruff>=0.12.10"]

[project.urls]
Repository = "https://github.com/hashicorp/python-tfe"
"Repository" = "https://github.com/hashicorp/python-tfe"
"Bug Tracker" = "https://github.com/hashicorp/python-tfe/issues"

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this the correct place to add it ?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. It is added under project.urls in other repos

[tool.setuptools.packages.find]
where = ["src"]
Expand Down Expand Up @@ -94,4 +102,4 @@ show_error_codes = true

[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false
disallow_untyped_defs = false
Loading