-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
68 lines (62 loc) · 1.68 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[project]
name="bancointer"
version = "0.1.1"
description = "Client to consume Banco Inter APIs"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
keywords = ["bancointer"]
authors = [
{name="Lucas Rangel Cezimbra", email="[email protected]"},
]
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
dependencies = [
"attrs",
"requests",
]
[project.urls]
homepage = "https://github.com/lucasrcezimbra/bancointer"
documentation = "https://bancointer.readthedocs.io/"
repository = "https://github.com/lucasrcezimbra/bancointer"
changelog = "https://github.com/lucasrcezimbra/bancointer/blob/main/CHANGELOG.md"
[project.optional-dependencies]
build = [
"flit>=3.4"
]
docs = [
"myst-parser==4.0.1",
"Sphinx==8.1.3",
"sphinx-rtd-theme==3.0.2",
]
test = [
"bump2version==1.0.1",
"coverage==6.4.4",
"coveralls==3.3.1",
"faker==36.1.1",
"pre-commit==4.1.0",
"pytest==8.3.4",
"pytest-cov==4.1.0",
"pytest-mock==3.14.0",
"responses==0.25.6",
]
[build-system]
requires = ["flit_core>=3.4,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "inter"
[tool.flit.sdist]
include = ["LICENSE", "README.md"]
exclude = ["contrib", "docs", "pytest.ini", "tox.ini", "test*"]
[tool.pytest.ini_options]
python_files = ["tests.py", "test_*.py", "*_tests.py"]
addopts = "--doctest-modules"