-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.24 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ianalyzer_readers"
version = "0.2.3"
authors = [
{name="Utrecht University, Centre for Digital Humanities - Research Software Lab", email="[email protected]"}
]
maintainers = [
{name="Utrecht University, Centre for Digital Humanities - Research Software Lab", email="[email protected]"}
]
license = {text = "MIT"}
dependencies = [
"beautifulsoup4",
"lxml",
"openpyxl",
"pandas",
"requests",
"rdflib",
]
description = "Utilities for extracting XML, HTML, CSV, XLSX, and RDF data with a common interface"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
]
[project.urls]
Repository = "https://github.com/CentreForDigitalHumanities/ianalyzer-readers"
Documentation = "https://ianalyzer-readers.readthedocs.io/"
[project.optional-dependencies]
dev = ['pytest', 'mkdocs', 'mkdocstrings-python']
[tool.setuptools]
packages = [
"ianalyzer_readers",
"ianalyzer_readers.readers",
]
[tool.pytest.ini_options]
pythonpath = [
'ianalyzer_readers'
]