-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 1016 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (29 loc) · 1016 Bytes
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
[tool.poetry]
name = "pypix"
version = "0.2.0"
description = "Python library for generating pix codes with CRC16 validation"
authors = ["Daniel Yohan <dyohan9@gmail.com>"]
readme = "README.md"
license = "GPL-3.0 License"
keywords = ["pix", "banco-central", "pagamento", "payment"]
repository = "https://github.com/dyohan9/python-pix"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.1.0"
black = "^23.7.0"
pytest = "^7.4.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"