Skip to content

Commit f7b2874

Browse files
committed
improve pylint score
1 parent 1939898 commit f7b2874

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,5 @@ coverage.xml
5454
docs/_build/
5555

5656
# PyBuilder
57-
target/
57+
target/
58+

forecastiopy/FIOAlerts.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,3 @@ def alerts_count(self):
5252
return None
5353
else:
5454
return len(self.get())
55-
56-

forecastiopy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
"""
3-
__init__.py file for FioWeatherPy module.
3+
__init__.py file for forecastiopy module.
44
Defines the __all__ modules.
55
"""
66

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
from setuptools import setup
22

3+
4+
35
setup(name='forecastiopy',
46
version='0.1',
57
description='A wrapper to access weather data provided by forecast.io',
6-
url='http://github.com/dvdme/funniest',
8+
url='http://github.com/dvdme/forecastiopy',
79
author='David Ervideira',
810
author_email='david.dme@gmail.com',
911
license='Eclipse Public License',
1012
packages=['forecastiopy'],
13+
install_requires=[
14+
'requests',
15+
],
1116
zip_safe=False)

0 commit comments

Comments
 (0)