This repository has been archived by the owner on Nov 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
84 lines (63 loc) · 2.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# -*- coding: utf-8 -*-
"""
Created on Sun Nov 08 21:53:57 2015
@author: OriolAndres
"""
from setuptools import setup, find_packages
long_desc = '''Inquisitor
==========
| This Python module provides a python wrapper around the API of Econdb.com.
| For a successful response, API users must provide an authentication. To obtain an authentication token, users can register at econdb.com.
Installation
------------
Just type:
.. code:: bash
pip install inquisitor
You can also find `Inquisitor on Github
<https://github.com/econdb/inquisitor/>`_
Documentation
-------------
The documentation on installation, use and API description is found at econdb.com `documentation page. <https://www.econdb.com/documenation/inquisitor/>`_
Usage example
-------------
.. code:: python
import inquisitor
qb = inquisitor.Inquisitor()
### List sources
qb.sources()
### List datasets
qb.datasets(source='EU')
### Obtain series data
qb.series(dataset='EI_BSCO_M')
'''
setup(
name='inquisitor',
packages=find_packages(),
version='0.1.9',
description='A Python client for econdb.com/api/',
long_description=long_desc,
author='Oriol Andres',
license='MIT License',
author_email='admin@econdb.com',
url='https://github.com/econdb/inquisitor',
download_url='https://github.com/econdb/inquisitor/tarball/0.1.9',
keywords=['data', 'economics', 'finance', 'api'],
install_requires=["requests"],
tests_require=["httmock"],
test_suite="tests",
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Science/Research",
"Topic :: Office/Business :: Financial :: Spreadsheet",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
extras_require={
"pandas": ["pandas"]
}
)