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
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ include testing/*.py
include tox.ini
include *.rst
include LICENSE
include *.toml
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ init:

- ECHO "Updating Environment"
- python -m pip install -U pip
- python -m pip install -U wheel
- python -m pip install -U pep517
- python -m pip install -U --upgrade-strategy=eager tox


Expand All @@ -35,7 +35,7 @@ test_script:

after_test:
# If tests are successful, create a whl package for the project.
- "%CMD_IN_ENV% python setup.py bdist_wheel"
- python -m pep517.build --binary .
- ps: "ls dist"

artifacts:
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools>=34.4", "wheel"]
build-backend = "setuptools.build_meta"