##// END OF EJS Templates
v2.9.2 :: Add 'tqdm' - bar progress download
v2.9.2 :: Add 'tqdm' - bar progress download

File last commit:

r21:5cce8357a695
r21:5cce8357a695
Show More
setup.py
16 lines | 423 B | text/x-python | PythonLexer
# encoding: utf-8
from setuptools import setup
setup(
name = "jrodb",
version = "2.9.2.0",
description = "Data Repository - JRO",
author = "Edson Ynilupu Mattos",
author_email = "eynilupu@igp.gob.pe",
url = "http://intranet.igp.gob.pe:8082/DATABASES/ckanext-jro/api-cliente",
packages = ["jrodb"],
install_requires = [
"ckanapi==4.7",
"requests",
"tqdm"
],
)