-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 1.16 KB
/
setup.py
File metadata and controls
37 lines (36 loc) · 1.16 KB
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
from setuptools import setup, find_packages
setup(
name="autosinapi",
# A versão agora é gerenciada pelo setuptools_scm
packages=find_packages(where="."),
package_dir={"": "."},
install_requires=[
"numpy",
"openpyxl",
"pandas",
"requests",
"setuptools",
"sqlalchemy",
"psycopg2-binary", # Driver para PostgreSQL
"tqdm",
"typing",
"pytest>=7.0.0",
"pytest-mock>=3.10.0",
"pytest-cov>=4.0.0",
"xlsxwriter",
],
python_requires='>=3.8', # Atualizado para versão mais moderna
author="Lucas Antonio M. Pereira",
author_email="contato@mundoaec.com",
description="Toolkit para automação do SINAPI",
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)