-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
21 lines (18 loc) · 899 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tool.poetry]
name = "pypix"
version = "0.1.6"
description = "Python library for generating pix codes with CRC16 validation"
authors = ["Daniel Yohan <[email protected]>"]
readme = "README.md"
license = "GPL-3.0 License"
keywords = ["pix", "banco-central", "pagamento", "payment"]
repository = "https://github.com/dyohan9/python-pix"
classifiers = [ "Development Status :: 1 - Planning", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Programming Language :: Python", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Software Development :: Libraries",]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.4"
black = "^19.3b0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"