-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
55 lines (50 loc) · 1.44 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
[metadata]
name = nfselib
version = 0.2.0
description = nfselib: NFS-e electronic invoicing library for Brazil
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/akretion/nfselib
author = Raphaël Valyi
author_email = "raphael.valyi@akretion.com.br"
license = LGPLv2
license_file = LICENSE
classifiers =
Intended Audience :: Developers
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 :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Code Generators
Topic :: Text Processing :: Markup :: XML
keywords = e-invoicing,NFS-e,ERP,Odoo
project_urls =
Source=https://github.com/akretion/nfselib
[options]
packages = nfselib
install_requires =
xsdata
python_requires = >=3.8
include_package_data = True
[options.extras_require]
test =
xmldiff
pytest
pytest-cov
tox
[flake8]
exclude = tests/*
max-line-length = 88
ignore = W503,ANN101,ANN102,E203
[doc8]
max-line-length = 88
[tool:pytest]
addopts = --color=yes