-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
59 lines (57 loc) · 2.34 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
48
49
50
51
52
53
54
55
56
57
58
59
# -*- coding: utf-8 -*-
#
# Copyright (c), 2018-2022, 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, find_packages
with open("README.rst") as readme:
long_description = readme.read()
setup(
name='elementpath',
version='4.6.0',
packages=find_packages(include=['elementpath', 'elementpath.*']),
package_data={
'elementpath': ['py.typed'],
'elementpath.validators': ['analyze-string.xsd', 'schema-for-json.xsd'],
},
author='Davide Brunato',
author_email='[email protected]',
url='https://github.com/sissaschool/elementpath',
keywords=['XPath', 'XPath2', 'XPath3', 'XPath31', 'Pratt-parser', 'ElementTree', 'lxml'],
license='MIT',
license_file='LICENSE',
description='XPath 1.0/2.0/3.0/3.1 parsers and selectors for ElementTree and lxml',
long_description=long_description,
python_requires='>=3.8',
extras_require={
'dev': ['tox', 'coverage', 'lxml', 'xmlschema>=3.3.2', 'Sphinx',
'memory-profiler', 'memray', 'flake8', 'mypy', 'lxml-stubs']
},
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 :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries',
'Topic :: Text Processing :: Markup :: XML',
]
)