Bump versions; update metadata

This commit is contained in:
Tony Garnock-Jones 2019-08-31 21:04:52 +01:00
parent 15d14cdafe
commit 07312954df
2 changed files with 8 additions and 8 deletions

View File

@ -1,13 +1,13 @@
{
"name": "preserves",
"version": "0.0.16",
"version": "0.1.0",
"description": "Experimental data serialization format",
"homepage": "https://gitlab.com/tonyg/preserves",
"license": "MIT",
"homepage": "https://gitlab.com/preserves/preserves",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"repository": "gitlab:tonyg/preserves",
"repository": "gitlab:preserves/preserves",
"scripts": {
"test": "mocha",
"cover": "nyc --reporter=html mocha"

View File

@ -5,19 +5,19 @@ except ImportError:
setup(
name="preserves",
version="0.0.5",
version="0.1.0",
author="Tony Garnock-Jones",
author_email="tonyg@leastfixedpoint.com",
license="GNU General Public License v3 or later (GPLv3+)",
license="Apache Software License",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
],
packages=["preserves"],
url="https://gitlab.com/tonyg/preserves",
url="https://gitlab.com/preserves/preserves",
description="Experimental data serialization format",
install_requires=[],
python_requires=">=3.6, <4",