-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
68 lines (64 loc) · 1.34 KB
/
setup.cfg
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
60
61
62
63
64
65
66
67
68
[metadata]
name = lector
version = attr: lector.__version__
description = A fast reader for messy CSV files and type inference.
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/graphext/lector
author = Graphext
author_email = [email protected]
keywords =
csv
json
parser
reader
type inference
license = Apache License 2.0
license_file = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Scientific/Engineering
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
project_urls =
Source = https://github.com/graphext/lector
[options]
packages = find:
platforms = any
python_requires = >=3.8
install_requires =
cchardet
clevercsv<0.8.1
msgspec
pyarrow>=15.0.0
pyarrow-hotfix
rich
tqdm
typer
[aliases]
test=pytest
[options.entry_points]
console_scripts =
lector = lector.cli:CLI
[options.extras_require]
test =
hypothesis
pytest
pytest-cov
docs =
pydata-sphinx-theme<0.10
sphinx
sphinx-autoapi
sphinx-autobuild
sphinx-autodoc-typehints
dev =
ipywidgets
jupyter_contrib_nbextensions
jupyter_nbextensions_configurator
notebook
pandas
pre-commit
ruff
lector[test]
lector[docs]