forked from invoice-x/invoice2data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
75 lines (66 loc) · 1.62 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
69
70
71
72
73
74
75
[metadata]
name = invoice2data
author = Manuel Riel
description = Python parser to extract data from pdf invoice
version = 0.3.6
url = https://github.com/invoice-x/invoice2data
keywords =
pdf
invoicing
# List of classifiers: https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 4 - Beta
Environment :: MacOS X
Environment :: Console
Environment :: Win32 (MS Windows)
Operating System :: MacOS
Operating System :: POSIX
Operating System :: Unix
Operating System :: Microsoft :: Windows
License :: OSI Approved :: MIT License
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Office/Business :: Financial
Topic :: Office/Business :: Financial :: Accounting
long_description = file: README.md
long_description_content_type = text/markdown
license_file = LICENSE.txt
[options]
setup_requires =
pip >= 10
pytest-runner
setuptools_git
install_requires =
chardet
pillow
pyyaml
dateparser
unidecode
[options.extras_require]
test = pytest; pytest-cov; flake8; pdfminer; tox
[options.entry_points]
console_scripts =
invoice2data = invoice2data.main:main
[tool:pytest]
addopts = -vs --cov invoice2data
testpaths = tests
filterwarnings =
ignore::DeprecationWarning
[coverage:run]
source = src
[flake8]
ignore = E203
max-line-length = 120
exclude =
build,dist,.git,.idea,.cache,.tox,.eggs,
[tox:tox]
envlist = py36,py37,py38,flake8
skip_missing_interpreters = True
[testenv]
commands = pytest
extras = test
[testenv:flake8]
commands=flake8 src tests
extras = test