Skip to content

Commit 8a55a10

Browse files
committed
Updated requirements and setup.py
1 parent 55235ec commit 8a55a10

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

requirements/common.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
pillow>=3.0.0
22
tinycss>=0.3
33
six>=1.10.0
4-
requests>=2.9.1
4+
requests>=2.10.0

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
from __future__ import print_function
33
import sys
4-
from setuptools import setup
4+
from setuptools import setup, find_packages
55
from setuptools.command.test import test as TestCommand
66

77

@@ -49,14 +49,15 @@ def run_tests(self):
4949
description='Python script (and library) for exporting icons from '
5050
'icon fonts (e.g. Font Awesome, Octicons) as PNG images.',
5151
long_description=description,
52-
packages=['icon_font_to_png'],
52+
packages=find_packages(),
53+
include_package_data=True,
5354
tests_require=['tox'],
5455
cmdclass={'test': Tox},
5556
install_requires=[
5657
'pillow>=3.0.0',
5758
'tinycss>=0.3',
5859
'six>=1.10.0',
59-
'requests>=2.9.1'
60+
'requests>=2.10.0',
6061
],
6162
extras_require={
6263
'testing': ['pytest'],

0 commit comments

Comments
 (0)