Skip to content

Commit

Permalink
Merge pull request #21 from glmcdona/glmcdona/fix-linux-missing-headers
Browse files Browse the repository at this point in the history
Fix missing headers linux distribution build error
  • Loading branch information
glmcdona authored Jul 20, 2023
2 parents c34495c + 34c9d62 commit 02f0c98
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include src/*.hpp
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from pybind11.setup_helpers import Pybind11Extension, build_ext
from setuptools import setup, Extension, find_packages

__version__ = "0.1.11"
__version__ = "0.1.13"

ext_modules = [
Pybind11Extension("binary2strings",
Expand All @@ -19,8 +19,13 @@
]

# Note to self to build and upload skip existing:
# Delete dist/ and build/
# python setup.py sdist bdist_wheel
# twine upload dist/* --skip-existing
# Get token from https://pypi.org/manage/account/token/
# Use username __token__
# Use password from token
# Delete token after use
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
Expand Down

0 comments on commit 02f0c98

Please sign in to comment.