comparison setup.py @ 1253:6d49fae517ba

pages: browser metadata + root `_browser`: - the `_browser` directory can now be put in root of a site `pages` directory, it will then include modules for the whole website - in `_browser` directories (notably the root one), a `browser_meta.json` file can be put to specify settings for a browser engine - pathlib.Path is now used LiberviaRootResource.site_path - introduced some type hints - task_brython copy modules in root `_browser` to build_path root. - minimal python version is now 3.7 due to type hints
author Goffi <goffi@goffi.org>
date Wed, 29 Apr 2020 17:34:53 +0200
parents 560d381943d8
children 3a3f3bccd65b
comparison
equal deleted inserted replaced
1252:80a92eb82b7f 1253:6d49fae517ba
88 zip_safe=False, 88 zip_safe=False,
89 setup_requires=["setuptools_scm"] if is_dev_version else [], 89 setup_requires=["setuptools_scm"] if is_dev_version else [],
90 use_scm_version=libervia_dev_version if is_dev_version else False, 90 use_scm_version=libervia_dev_version if is_dev_version else False,
91 install_requires=install_requires, 91 install_requires=install_requires,
92 package_data={"libervia": ["VERSION"]}, 92 package_data={"libervia": ["VERSION"]},
93 python_requires=">=3.6", 93 python_requires=">=3.7",
94 ) 94 )