forked from guilhermechapiewski/correios-api-py
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·22 lines (21 loc) · 740 Bytes
/
setup.py
File metadata and controls
executable file
·22 lines (21 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# coding: UTF-8
from setuptools import setup
setup(
name='packtrack',
version='1.6',
packages=['packtrack'],
author='Ale Borba',
author_email='ale.borba@codingforchange.com',
description='API Python para obter informacoes de encomendas',
license='LGPLv3',
keywords='encomendas track api',
url='https://github.com/aleborba/packtrack',
long_description='API Python para obter informacoes de encomendas. Para mais detalhes veja a documentacao no Github: https://github.com/aleborba/packtrack/blob/master/README.textile',
install_requires=[
'BeautifulSoup >= 3.1.0',
'requests >= 0.14.2',
'beautifulsoup4 >= 4.3.2',
'lxml >= 2.3.5',
'zeep >= 1.6.0',
],
)