-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.2 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
[tool.poetry]
name = "acbrlib-python"
version = "0.1.0"
description = "Camada de abstração para acesso à ACBrLib em Python"
license = "Apache-2.0"
repository = "https://github.com/base4sistemas/acbrlib-python"
authors = ["Daniel Gonçalves <[email protected]>"]
readme = "README.rst"
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: Portuguese (Brazilian)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Office/Business",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Point-Of-Sale",
"Topic :: Printing",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
]
[tool.poetry.dependencies]
python = "^3.9"
Unidecode = "^1.3.2"
[tool.poetry.dev-dependencies]
pytest = "*"
ipython = "^7.28.0"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/base4sistemas/acbrlib-python/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"