-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
16 lines (16 loc) · 873 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- coding: utf-8 -*-
# http://peterdowns.com/posts/first-time-with-pypi.html
from distutils.core import setup
setup(
name='pyaboleto_templates_django',
packages=['pyaboleto_templates_django'], # this must be the same as the name above
version='0.1',
description='O pyaboleto (Python Yet Another Boleto Templates para Django) é um conjunto de templates no padrão'
' Django que utiliza os objetos de dados do pyaboleto para gerar os boletos.',
author='Kelson da Costa Medeiros',
author_email='[email protected]',
url='https://github.com/umbrellaTech/pyaboleto_templates_django', # use the URL to the github repo
download_url='https://github.com/umbrellaTech/pyaboleto_templates_django/tarball/0.1', # I'll explain this in a second
keywords=['boleto', 'django', 'template'], # arbitrary keywords
classifiers=[],
)