-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (33 loc) · 1.12 KB
/
setup.py
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
# -*- coding: utf-8 -*-
import setuptools
from setuptools import setup, find_packages
from bradocs4py import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = 'bradocs4py',
packages = find_packages(exclude = ['contrib', 'docs', 'tests*']),
include_package_data = False,
version = __version__,
description = 'Implementa a funcionalidade validar_inscao_estadual.',
long_description = long_description,
long_description_content_type="text/markdown",
python_requires='>=3',
author = 'Nâmio Evangelista Cavalcante de Sousa',
author_email = '[email protected]',
url = 'https://github.com/namio/BRADocs4Py.git',
license = 'MIT',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Natural Language :: Portuguese',
'Natural Language :: Portuguese (Brazilian)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords = 'cpf cnpj documentos brasileiros receita federal',
zip_safe = True,
)