forked from eDatos/istacpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 1.15 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
from setuptools import setup
setup(
name="istacpy",
version="0.2",
packages=["istacpy.indicators", "istacpy.structuralresources", "istacpy.statisticalresources", "istacpy.resources"],
url="https://www.gobiernodecanarias.org/istac/api/",
download_url="https://github.com/eDatos/istacpy/raw/master/dist/istacpy-0.1.tar.gz",
license="gpl-3.0",
author="Instituto Canario de Estadistica (ISTAC)",
author_email="[email protected]",
description="Python package for obtaining open data from Instituto Canario de Estadistica (ISTAC)",
keywords=["istacpy", "ISTAC", "Instituto Canario de Estadistica", "API", "JSON"],
install_requires=['requests'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
)