-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
45 lines (44 loc) · 1.42 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
37
38
39
40
41
42
43
44
45
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='pycnab240',
version='0.1.28',
author='Trustcode',
author_email='[email protected]',
url='https://github.com/Trust-Code/PyTrustCnab240',
keywords=['cnab', 'cnab240', 'pycnab'],
packages=find_packages(exclude=['*tests*']),
include_package_data=True,
package_data={
'pycnab240': [
'bancos/santander/specs/*.json',
'bancos/itau/specs/*.json',
'bancos/bradesco/specs/*.json',
'bancos/sicoob/specs/*.json',
],
},
install_requires=[
'setuptools-git==1.1',
'future'
],
license='MIT',
description='Lib para gerar arquivo CNAB 240 - Integração bancária',
long_description=open('README.md', 'r').read(),
download_url='https://github.com/Trust-Code/PyTrustCnab240',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
platforms='any',
tests_require=[
'mock',
],
)