We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fc63ef commit 0b06535Copy full SHA for 0b06535
README.md
@@ -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
@@ -1,6 +1,6 @@
import sys
-from skbuild import setup
+from setuptools import setup
# Require pytest-runner only when running tests
pytest_runner = (['pytest-runner>=2.0,<3dev']
@@ -10,7 +10,7 @@
setup_requires = pytest_runner
11
12
setup(
13
- name="hello-pure",
+ name="hello-pypi",
14
version="1.2.3",
15
description="a minimal example package (pure python version)",
16
author='The scikit-build team',
test_hello_pure.py renamed to test_hello_pypi.py
0 commit comments