Skip to content

Commit 0b06535

Browse files
committed
Add README, rename package and import setup from setuptools
1 parent 0fc63ef commit 0b06535

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
hello-pypi
2+
----------
3+
4+
Example of pure Python package used to illustate publishing on PyPI
5+
6+
Build with
7+
8+
```
9+
pip wheel -w dist .
10+
```

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys
22

3-
from skbuild import setup
3+
from setuptools import setup
44

55
# Require pytest-runner only when running tests
66
pytest_runner = (['pytest-runner>=2.0,<3dev']
@@ -10,7 +10,7 @@
1010
setup_requires = pytest_runner
1111

1212
setup(
13-
name="hello-pure",
13+
name="hello-pypi",
1414
version="1.2.3",
1515
description="a minimal example package (pure python version)",
1616
author='The scikit-build team',
File renamed without changes.

0 commit comments

Comments
 (0)