-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (32 loc) · 1.25 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
from setuptools import setup, find_packages
with open('README.md') as fh:
long_description = fh.read()
setup(
name='istacpy',
version='0.7.0',
packages=find_packages(exclude=('tests',)),
url='https://www.gobiernodecanarias.org/istac/api/',
license='gpl-3.0',
author='Instituto Canario de Estadistica (ISTAC)',
author_email='consultas.istac@gobiernodecanarias.org',
description=(
'Python package for obtaining open data '
'from Instituto Canario de Estadística (ISTAC)'
),
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['istacpy', 'ISTAC', 'Instituto Canario de Estadistica', 'API', 'JSON'],
install_requires=['requests'],
python_requires='>=3.6',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries',
'Topic :: Internet :: WWW/HTTP',
],
)