-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (42 loc) · 1.58 KB
/
setup.py
File metadata and controls
46 lines (42 loc) · 1.58 KB
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
# -*- coding: utf-8 -*-
"""
SETUP de esiosdata: Web Scraper para datos de demanda, producción
y coste de la energía eléctrica en España.
"""
from setuptools import setup, find_packages
from esiosdata import __version__ as version
packages = find_packages(exclude=['docs', '*tests*', 'notebooks', 'htmlcov'])
setup(
name='esiosdata',
version=version,
description='Web Scraper para datos de demanda, producción y coste de '
'la energía eléctrica en España, '
'y simulador de facturación eléctrica según el PVPC..',
# TODO Long description para PYPI
keywords='web scraper, energy, esios, ree, pvpc, electricidad',
author='Eugenio Panadero',
author_email='azogue.lab@gmail.com',
url='https://github.com/azogue/esiosdata',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: MIT License',
'Natural Language :: Spanish',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
],
packages=packages,
package_data={
'esiosdata': ['templates/*'],
},
install_requires=['termcolor', 'pandas', 'pytz', 'numpy',
'matplotlib', 'dataweb', 'jinja2'],
entry_points={
'console_scripts': ['esiosdata = esiosdata.__main__:main_cli']
},
tests_require=['pytest>=3.0.0'],
)