Skip to content

Commit 02f0c98

Browse files
authored
Merge pull request #21 from glmcdona/glmcdona/fix-linux-missing-headers
Fix missing headers linux distribution build error
2 parents c34495c + 34c9d62 commit 02f0c98

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include src/*.hpp

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from pybind11.setup_helpers import Pybind11Extension, build_ext
99
from setuptools import setup, Extension, find_packages
1010

11-
__version__ = "0.1.11"
11+
__version__ = "0.1.13"
1212

1313
ext_modules = [
1414
Pybind11Extension("binary2strings",
@@ -19,8 +19,13 @@
1919
]
2020

2121
# Note to self to build and upload skip existing:
22+
# Delete dist/ and build/
2223
# python setup.py sdist bdist_wheel
2324
# twine upload dist/* --skip-existing
25+
# Get token from https://pypi.org/manage/account/token/
26+
# Use username __token__
27+
# Use password from token
28+
# Delete token after use
2429
with open("README.md", "r") as fh:
2530
long_description = fh.read()
2631
setup(

0 commit comments

Comments
 (0)