-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 749 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (21 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name="opencnpj",
version="0.0.3",
license="MIT License",
author="ofcoliva",
description="Wrapper para a API OpenCNPJ",
long_description="Repository with more instructions available at: https://github.com/ofcoliva/opencnpj",
long_description_content_type="text/markdown",
url="https://github.com/ofcoliva/opencnpj",
author_email="ofcoliva@gmail.com",
keywords="opencnpj api cnpj",
packages=["opencnpj"],
install_requires=["requests", "pip_system_certs", "pydantic"],
python_requires=">=3.8",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)