-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (32 loc) · 1.07 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[options]
package_dir = "xmlstreamer"
packages = ["xmlstreamer"]
[project]
name = "xmlstreamer"
version = "0.9"
authors = [
{name = "Carlos A. Planchón", email = "[email protected]"}
]
description = "Python library to parse XML data directly from HTTP, HTTPS, or FTP sources without loading the entire file into memory, supporting decompression, encoding detection, tag-based itemization, and optional filtering."
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
]
license = {text = "MIT License"}
keywords = ["xml", "streaming", "parser", "lightweight", "http", "https", "ftp"]
readme = "README.md"
dependencies=[
"defusedxml==0.7.1",
"chardet==5.2.0",
"requests==2.28.0",
# "requests==2.32.3",
"attrs==23.2.0",
"attrs-strict==1.0.1"
]
[project.urls]
repository = "https://github.com/carlosplanchon/xmlstreamer.git"