-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (35 loc) · 1.08 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
[project]
name = "fgts_pdf_dados"
version = '1.0'
description = "Extrai dados de PDFs do FGTS e grava tudo em arquivo CSV pronto para usar com o Inverstorzilla."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
authors = [
{ name = "Avi Alkalay", email = "[email protected]" },
]
keywords = [
"FGTS",
]
dependencies = [
"pandas",
"pdfplumber",
]
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
]
[project.scripts]
fgts-pdf-dados = "fgts_pdf_dados.__main__:main"
[project.urls]
Homepage = "https://github.com/avibrazil/xingu"
Source = "https://github.com/avibrazil/xingu"
Issues = "https://github.com/avibrazil/xingu/issues/new/choose"
Pypi = "https://pypi.org/project/xingu"
[tool.setuptools.package-dir]
fgts_pdf_dados = "src"