-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
38 lines (31 loc) · 984 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# correios-frete
# https://github.com/adonescunha/correios-frete
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2013 Adones Cunha [email protected]
from setuptools import setup
from correios_frete import version
setup(
name='correios-frete',
version=version.to_str(),
description='Cliente para o WebService de consulta de frete dos correios.',
author='Adones Cunha',
author_email='[email protected]',
url='https://github.com/adonescunha/correios-frete',
packages=[
'correios_frete'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires=[
'suds'
]
)