Merge setup.py from PR #143 and update release information

This commit is contained in:
Davide Brunato 2019-11-18 09:23:14 +01:00
commit db45230fd6
3 changed files with 5 additions and 4 deletions

View File

@ -2,12 +2,11 @@
CHANGELOG CHANGELOG
********* *********
`v1.0.16`_ (2019-11-15) `v1.0.16`_ (2019-11-18)
======================= =======================
* Improved XMLResource class for working with compressed files * Improved XMLResource class for working with compressed files
* Fix for validation with XSD wildcards and 'lax' process content * Fix for validation with XSD wildcards and 'lax' process content
* Fix ambiguous items validation for xs:choice and xs:sequence models * Fix ambiguous items validation for xs:choice and xs:sequence models
* Dozens of W3C's failed tests fixed
`v1.0.15`_ (2019-10-13) `v1.0.15`_ (2019-10-13)
======================= =======================

View File

@ -1,4 +1,4 @@
# This repository adheres to the publiccode.yml standard by including this # This repository adheres to the publiccode.yml standard by including this
# metadata file that makes public software easily discoverable. # metadata file that makes public software easily discoverable.
# More info at https://github.com/italia/publiccode.yml # More info at https://github.com/italia/publiccode.yml
@ -6,7 +6,7 @@ publiccodeYmlVersion: '0.2'
name: xmlschema name: xmlschema
url: 'https://github.com/sissaschool/xmlschema' url: 'https://github.com/sissaschool/xmlschema'
landingURL: 'https://github.com/sissaschool/xmlschema' landingURL: 'https://github.com/sissaschool/xmlschema'
releaseDate: '2019-10-XX' releaseDate: '2019-11-18'
softwareVersion: v1.0.16 softwareVersion: v1.0.16
developmentStatus: stable developmentStatus: stable
platforms: platforms:

View File

@ -39,6 +39,7 @@ class InstallCommand(install):
setup( setup(
name='xmlschema', name='xmlschema',
version='1.0.16', version='1.0.16',
setup_requires=['elementpath~=1.3.0'],
install_requires=['elementpath~=1.3.0'], install_requires=['elementpath~=1.3.0'],
packages=['xmlschema'], packages=['xmlschema'],
include_package_data=True, include_package_data=True,
@ -64,6 +65,7 @@ setup(
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries' 'Topic :: Software Development :: Libraries'
] ]