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 -f .coverage
rm -rf preserves.egg-info build dist rm -rf preserves.egg-info build dist
publish: clean publish: clean build
# sudo apt install python3-wheel twine # sudo apt install python3-wheel twine
python3 setup.py sdist bdist_wheel
twine upload dist/* twine upload dist/*
build:
python3 setup.py sdist bdist_wheel

View File

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