Skip to content

Commit 47757b0

Browse files
committed
ENH: Demonstrate pyproject with setuptools
1 parent a96a817 commit 47757b0

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

pyproject.toml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[build-system]
2+
requires = ["setuptools"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "asv_samples"
7+
version = "0.1.0"
8+
description = "A set of asv samples"
9+
authors = [
10+
{name = "Rohit Goswami", email = "[email protected]"},
11+
]
12+
license = {file = "LICENSE"}
13+
readme = "readme.md"
14+
15+
[project.urls]
16+
repository = "https://github.com/HaoZeke/asv_samples"
17+
18+
[tool.setuptools.packages.find]
19+
include = ["asv_samples*"]

0 commit comments

Comments
 (0)