forked from sissaschool/xmlschema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (45 loc) · 1.78 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- coding: utf-8 -*-
#
# Copyright (c), 2016-2018, SISSA (International School for Advanced Studies).
# All rights reserved.
# This file is distributed under the terms of the MIT License.
# See the file 'LICENSE' in the root directory of the present
# distribution, or http://opensource.org/licenses/MIT.
#
# @author Davide Brunato <[email protected]>
#
from setuptools import setup
with open("README.rst") as readme:
long_description = readme.read()
setup(
name='xmlschema',
version='1.0.1',
install_requires=['elementpath>=1.0.10', 'defusedxml>=0.5'],
packages=['xmlschema', 'xmlschema.validators', 'xmlschema.tests'],
package_data={'xmlschema': [
'unicode_categories.json', 'validators/schemas/*.xsd', 'validators/schemas/*/*.xsd',
'tests/cases/*', 'tests/cases/*/*', 'tests/cases/*/*/*', 'tests/resources/*'
]},
author='Davide Brunato',
author_email='[email protected]',
url='https://github.com/brunato/xmlschema',
license='MIT',
description='An XML Schema validator and decoder',
long_description=long_description,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries'
]
)