-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.37 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = 'pyboleto',
version = __import__('pyboleto').__version__,
author = 'Eduardo Cereto Carvalho',
author_email = '[email protected]',
url = 'https://bitbucket.org/eduardo.cereto/pyboleto/',
packages = find_packages(),
include_package_data = True,
zip_safe = False,
#install_requires = [
# 'reportlab>=2.5',
#],
provides = [
'pyboleto'
],
license = 'BSD',
description = 'Python Library to create boletos',
long_description = open('README.rst', 'r').read(),
download_url = 'http://pypi.python.org/pypi/pyboleto',
entry_points = {
'console_scripts':[
'print_boleto_data = pyboleto.scripts.print_sample_data:print_test',
],
},
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Operating System :: OS Independent',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: BSD License',
'Natural Language :: Portuguese (Brazilian)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Office/Business :: Financial',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)