Skip to content
Merged
Show file tree
Hide file tree
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
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
# How to build
# How to install & test (for user)

```
python3 -m pip install pocket-numpy
python3 -m pocket_numpy --help
python3 -m pocket_numpy tests/test_numpy.py
```

---

# How to build (for dev)

```
make build
```

# How to test
# How to test (for dev)

```
make test
```

See all available commands in `Makefile`.
10 changes: 3 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,17 @@ build-backend = "scikit_build_core.build"

[project]
name = "pocket_numpy"
version = "0.0.1"
version = "0.0.2"
description = "pocketpy with numpy"
readme = "README.md"
authors = [
{ name = "tzx", email = "dvorak4tzx@gmail.com" },
]
requires-python = ">=3.8"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -31,14 +30,11 @@ Homepage = "https://github.com/cubao/xtensor-numpy"
test = ["pytest"]

[tool.scikit-build]
wheel.expand-macos-universal-tags = true
wheel.expand-macos-universal-tags = false

[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]

[tool.cibuildwheel]
test-command = "pytest {project}/tests"
test-extras = ["test"]
test-skip = ["*universal2:arm64"]
build-verbosity = 1
Loading