-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (29 loc) · 1.05 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
from setuptools import find_packages, setup
with open('README.md', 'r') as readme:
long_description = readme.read()
setup(
name='pyrastreio',
version='0.2.0',
url='https://github.com/pyanderson/pyrastreio',
license='MIT License',
author='Anderson Lima',
author_email='anderson.sl93@hotmail.com',
keywords='rastreio encomenda correios jadlog sequoia',
description='Biblioteca/CLI para rastreio de encomendas de diversos sistemas.', # noqa
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=['beautifulsoup4', 'requests', 'click', 'tabulate'],
classifiers=[
'Environment :: Console',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Natural Language :: Portuguese (Brazilian)'
],
entry_points='''
[console_scripts]
rastreio=pyrastreio.cli:main
cade_minha_encomenda=pyrastreio.cli:main
''',
)