Skip to content

Commit

Permalink
ENH: Demonstrate pyproject with setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZeke committed Feb 11, 2024
1 parent 7886e44 commit 3a5f9f8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "asv_samples"
version = "0.1.0"
description = "A set of asv samples"
authors = [
{name = "Rohit Goswami", email = "[email protected]"},
]
license = {file = "LICENSE"}
readme = "readme.md"

[project.urls]
repository = "https://github.com/HaoZeke/asv_samples"

[tool.setuptools.packages.find]
include = ["asv_samples*"]

0 comments on commit 3a5f9f8

Please sign in to comment.