We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c34495c + 34c9d62 commit 02f0c98Copy full SHA for 02f0c98
MANIFEST.in
@@ -0,0 +1 @@
1
+include src/*.hpp
setup.py
@@ -8,7 +8,7 @@
8
from pybind11.setup_helpers import Pybind11Extension, build_ext
9
from setuptools import setup, Extension, find_packages
10
11
-__version__ = "0.1.11"
+__version__ = "0.1.13"
12
13
ext_modules = [
14
Pybind11Extension("binary2strings",
@@ -19,8 +19,13 @@
19
]
20
21
# Note to self to build and upload skip existing:
22
+# Delete dist/ and build/
23
# python setup.py sdist bdist_wheel
24
# 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
29
with open("README.md", "r") as fh:
30
long_description = fh.read()
31
setup(
0 commit comments