Fix bundling of schema.prb

This commit is contained in:
Tony Garnock-Jones 2021-11-30 18:41:34 +01:00
parent aadd83d715
commit bb0d825cdf
2 changed files with 7 additions and 3 deletions

View File

@ -13,7 +13,9 @@ clean:
rm -f .coverage
rm -rf preserves.egg-info build dist
publish: clean
publish: clean build
# sudo apt install python3-wheel twine
python3 setup.py sdist bdist_wheel
twine upload dist/*
build:
python3 setup.py sdist bdist_wheel

View File

@ -5,7 +5,7 @@ except ImportError:
setup(
name="preserves",
version="0.7.1",
version="0.7.2",
author="Tony Garnock-Jones",
author_email="tonyg@leastfixedpoint.com",
license="Apache Software License",
@ -21,4 +21,6 @@ setup(
description="Experimental data serialization format",
install_requires=[],
python_requires=">=3.6, <4",
setup_requires=['setuptools_scm'],
include_package_data=True,
)