-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (30 loc) · 997 Bytes
/
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
[tool.poetry]
name = "certifik8"
version = "0.2.3"
description = "Certifik8 é um gerador de certificados automático criado em Python. O projeto busca facilitar a geração massiva de documentos a serem emitidos após algum evento."
authors = [
"Victorio <[email protected]>",
"Pedro Henrique <[email protected]>",
"Pedro Sampaio <[email protected]>",
"Leandro <[email protected]>",
"Daniel <[email protected]>",
"Geovane <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "Certifik8"}]
repository = "https://github.com/fga-eps-mds/Certifik8"
[tool.poetry.dependencies]
python = "^3.10"
pandas = "1.5.2"
setuptools = "65.6.3"
Pillow = "9.3.0"
PyPDF2 = "2.11.1"
pdfkit = "1.0.0"
beautifulsoup4 = "^4.11.1"
openpyxl = "^3.0.10"
tqdm = "^4.64.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
certifik8 = 'Certifik8.main:run'