Skip to content

Commit

Permalink
Merge pull request #9 from mgorny/fix-inst
Browse files Browse the repository at this point in the history
Wheel build fixes
  • Loading branch information
kevin1024 authored Aug 14, 2023
2 parents c62ab87 + 16d877b commit e354fdd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
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"]
build-backend = "setuptools.build_meta"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
'Programming Language :: Python :: 3.6',
],
test_suite="test_httpbin",
packages=find_packages(),
packages=find_packages(exclude=["tests"]),
include_package_data = True, # include files listed in MANIFEST.in
install_requires=[
'Flask', 'MarkupSafe', 'decorator', 'itsdangerous', 'brotlicffi',
'werkzeug', 'gevent', 'flasgger', 'jinja2'
'werkzeug', 'flasgger', 'jinja2'
],
)

0 comments on commit e354fdd

Please sign in to comment.